nix/hosts/common/networking.nix

20 lines
412 B
Nix
Raw Normal View History

{ networking = {
nameservers = [
"45.11.45.11"
2022-08-24 14:52:39 +00:00
"100.64.0.3"
"fd42:d42:d42:53::1"
"fd42:d42:d42:54::1"
"172.23.0.53"
"172.20.0.53"
];
2022-08-30 16:38:18 +00:00
timeServers = [
"0.pool.ntp.org"
"1.pool.ntp.org"
"2.pool.ntp.org"
"3.pool.ntp.org"
];
resolvconf.extraConfig = ''
2022-08-24 14:52:39 +00:00
name_servers="100.64.0.3 45.11.45.11 fd42:d42:d42:53::1 fd42:d42:d42:54::1 172.23.0.53 172.20.0.53"
'';
};}