nixos/modules/common/dns.nix
2025-03-10 12:36:28 -04:00

12 lines
261 B
Nix

{
services.dnsproxy = {
enable = true;
settings = rec {
upstream = ["https://base.dns.mullvad.net/dns-query"];
fallback = ["1.1.1.1"];
bootstrap = fallback;
};
};
environment.etc."resolv.conf".text = "nameserver 0.0.0.0";
}