From db6c334e94d57d5df50f1741dae5d01e3aba88ce Mon Sep 17 00:00:00 2001 From: Bobbe Date: Wed, 25 Mar 2026 12:37:47 +0100 Subject: [PATCH] Fix building unbound configs for alternates --- unbound.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unbound.nix b/unbound.nix index 1e9aa3d70..0727edb4a 100644 --- a/unbound.nix +++ b/unbound.nix @@ -7,7 +7,7 @@ in runCommandLocal "stevenblack-hosts-unbound" { src = ./.; } '' mkdir $out ${toUnboundConf} < $src/hosts > $out/hosts - for file in alternates/*/hosts; do + for file in $src/alternates/*/hosts; do ${toUnboundConf} < $file > $out/$(basename $(dirname $file)) done ''