16 lines
244 B
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];
|
|
}
|