nixos/modules/graphical/dns.nix
2026-05-29 17:00:52 -04:00

16 lines
335 B
Nix

{
services.dnsproxy = {
enable = true;
flags = [
"--cache"
"--cache-size=64000000"
"--cache-optimistic"
];
settings = rec {
upstream = [ "https://base.dns.mullvad.net/dns-query" ];
listen-addrs = [ "127.0.0.1" ];
fallback = [ "1.1.1.1" ];
bootstrap = fallback;
};
};
}