13 lines
233 B
Nix
13 lines
233 B
Nix
|
{...}: {
|
||
|
services.adguardhome = {
|
||
|
enable = true;
|
||
|
mutableSettings = true;
|
||
|
settings.bind_port = 3001;
|
||
|
openFirewall = true;
|
||
|
};
|
||
|
networking.firewall = {
|
||
|
allowedTCPPorts = [53];
|
||
|
allowedUDPPorts = [53];
|
||
|
};
|
||
|
}
|