nix-config/hosts/rockhole64/adguard.nix

16 lines
244 B
Nix

{
config,
pkgs,
inputs,
lib,
...
}: {
services.adguardhome = {
enable = true;
mutableSettings = true;
allowDHCP = true;
openFirewall=true;
port=8080;
};
networking.firewall.allowedUDPPorts=[53 67 546 547];
}