nix-config/hosts/rockhole64/adguard.nix

15 lines
187 B
Nix

{
config,
pkgs,
inputs,
lib,
...
}: {
services.adguardhome = {
enable = true;
mutableSettings = true;
allowDHCP = true;
openFirewall=true;
port=80;
};
}