diff --git a/modules/system/os/networking/module.nix b/modules/system/os/networking/module.nix index bf6bb44..e9f005c 100644 --- a/modules/system/os/networking/module.nix +++ b/modules/system/os/networking/module.nix @@ -18,17 +18,21 @@ in { }; nameservers = [ - # quad9 DNS - "9.9.9.9" - "2620::fe::fe" + # I have choosen Mullvad DNS as my standard DNS provider, + # as Quad9 at some point stopped resolving my universitie's IP address. + # Furthermore, Mullvad has a pretty good reputation when it comes to privacy + "194.242.2.4" + "2a07:e340::4" ]; }; services.resolved = { enable = true; dnssec = "false"; dnsovertls = "opportunistic"; - # quad9 dns - fallbackDns = ["9.9.9.9" "2620::fe::fe"]; + fallbackDns = [ + "194.242.2.4" + "2a07:e340::4" + ]; }; users.users.${username}.extraGroups = ["networkmanager"];