this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(core/networking): diverse DNS servers

+1 -1
+1 -1
modules/core/networking.nix
··· 14 14 enable = lib.mkEnableOption "networking"; 15 15 nameservers = lib.mkOption { 16 16 type = lib.types.listOf (lib'.types.listOfLength lib.types.str 2); 17 - default = [["1.1.1.1" "one.one.one.one"] ["1.0.0.1" "one.one.one.one"]]; 17 + default = [["1.1.1.1" "one.one.one.one"] ["9.9.9.9" "dns.quad9.net"]]; 18 18 description = "Set the nameservers to use."; 19 19 }; 20 20 stevenblack = {