flake/nixos/networking/dns.nix

9 lines
146 B
Nix

{...}: {
networking.nameservers = [
### Google DNS
"8.8.8.8"
"8.8.4.4"
"2001:4860:4860::8888"
"2001:4860:4860::8844"
];
}