diff --git a/system-config/configuration/homebox/default.nix b/system-config/configuration/homebox/default.nix index 9065f8d..038fe2d 100644 --- a/system-config/configuration/homebox/default.nix +++ b/system-config/configuration/homebox/default.nix @@ -93,8 +93,11 @@ networking = { hostName = "homebox"; - nameservers = [ "1.1.1.1" "1.0.0.1" ]; - networkmanager.enable = true; + nameservers = lib.mkDefault [ "1.1.1.1" "1.0.0.1" ]; + networkmanager = { + enable = true; + dns = "none"; + }; nftables = {}; nat = { diff --git a/system-config/services/containers/pihole/default.nix b/system-config/services/containers/pihole/default.nix index 1dbd7d8..b028e83 100644 --- a/system-config/services/containers/pihole/default.nix +++ b/system-config/services/containers/pihole/default.nix @@ -21,6 +21,7 @@ networking = { nat.internalInterfaces = [ "ve-pihole" ]; + nameservers = [ "192.168.100.28" ]; }; containers.pihole = {