nixos/modules/common-desktop/dns.nix
2025-02-12 18:46:12 +01:00

11 lines
230 B
Nix

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