From 57aece07090b61f724b71c5ed4a84f96ac184d15 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Sun, 11 Feb 2024 23:30:12 +0000 Subject: [PATCH] rotuer: don't forward queries for local domain --- examples/rotuer.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/rotuer.nix b/examples/rotuer.nix index 8ff8556..23823ad 100644 --- a/examples/rotuer.nix +++ b/examples/rotuer.nix @@ -123,7 +123,7 @@ in rec { # You can add static addresses for the DHCP server here. I'm # not putting my actual MAC addresses in a public git repo ... hosts = { } // lib.optionalAttrs (builtins.pathExists ./static-leases.nix) (import ./static-leases.nix); - + upstreams = [ "/${secrets.domainName}/" ]; domain = secrets.domainName; };