From 8a2be17d09db461650861a421857b4db88e1e27b Mon Sep 17 00:00:00 2001 From: cnst Date: Sat, 13 Sep 2025 16:29:30 +0200 Subject: [PATCH] fix(unbound): change to IP --- modules/server/unbound/default.nix | 2 +- scripts/bin/spawn-or-focus.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/server/unbound/default.nix b/modules/server/unbound/default.nix index 9e4b516d..dee70755 100644 --- a/modules/server/unbound/default.nix +++ b/modules/server/unbound/default.nix @@ -13,7 +13,7 @@ let if hostname == "ziggy" then "192.168.88.12" else if hostname == "sobotka" then - "192.168.88.14" + "192.168.88.15" else throw "No IP defined for host ${hostname}"; in diff --git a/scripts/bin/spawn-or-focus.sh b/scripts/bin/spawn-or-focus.sh index 35e4117a..4d6e462b 100755 --- a/scripts/bin/spawn-or-focus.sh +++ b/scripts/bin/spawn-or-focus.sh @@ -1,3 +1,4 @@ +# Written based on @fasterius work # Check if at least one argument is provided if [ $# -lt 1 ]; then notify-send -t 5000 "Usage: spawn-or-focus.sh [APP_CMD]"