2024-11-16 19:58:59 +01:00

16 lines
222 B
Nix

{
services.adguardhome = {
enable = true;
openFirewall = true;
settings = {
dns = {
port = 53;
upstream_dns = [
"1.1.1.1"
"8.8.8.8"
];
};
};
};
}