diff --git a/nix/configuration/roles/network/default.nix b/nix/configuration/roles/network/default.nix index 8b5a4a7..e77582c 100644 --- a/nix/configuration/roles/network/default.nix +++ b/nix/configuration/roles/network/default.nix @@ -5,6 +5,16 @@ ... }: +# Alternative DNS servers: +# "1.0.0.1#cloudflare-dns.com" +# "1.1.1.1#cloudflare-dns.com" +# "2606:4700:4700::1001#cloudflare-dns.com" +# "2606:4700:4700::1111#cloudflare-dns.com" +# "8.8.4.4#dns.google" +# "8.8.8.8#dns.google" +# "2001:4860:4860::8844#dns.google" +# "2001:4860:4860::8888#dns.google" + { imports = [ ]; @@ -18,7 +28,7 @@ enable = true; dnssec = "true"; domains = [ "~." ]; - # fallbackDns = [ ]; + fallbackDns = [ ]; dnsovertls = "true"; };