nixos-config/hosts/nuc/modules/adguard/default.nix
2023-04-27 18:11:10 +02:00

11 lines
212 B
Nix

{ ... }:
{
networking.firewall.allowedTCPPorts = [53];
networking.firewall.allowedUDPPorts = [53];
services.adguardhome = {
enable = true;
openFirewall = true;
settings.bind_port = 3000;
};
}