snowflake/hosts/haru/services/adguardhome/adguardhome.nix

47 lines
996 B
Nix
Raw Normal View History

{config, ...}: {
2024-01-07 17:50:34 -05:00
imports = [
./filters.nix
./rewrites.nix
];
sops.secrets.nextdns = {owner = "adguardhome";};
users.users.adguardhome = {
isSystemUser = true;
group = "adguardhome";
};
users.groups.adguardhome = {};
2024-01-07 18:05:04 -05:00
networking.firewall.allowedTCPPorts = [53 3000];
2024-01-07 17:50:34 -05:00
networking.firewall.allowedUDPPorts = [53];
2024-01-07 17:50:34 -05:00
services.adguardhome = {
enable = true;
openFirewall = true;
mutableSettings = true;
settings = {
bind_port = 3000;
bind_host = "192.168.1.103";
os = {
user = "adguardhome";
group = "adguardhome";
};
dns = {
upstream_dns_file = config.sops.secrets.nextdns.path;
enable_dnssec = true;
cache_optimistic = true;
};
2024-01-07 17:50:34 -05:00
statistics = {
enabled = true;
interval = "336h";
2024-01-07 17:50:34 -05:00
ignored = [
"youporn.com"
"pornhub.com"
"xvideos.com"
"onlyfans.com"
"fansly.com"
];
};
};
};
}