Evie Litherland-Smith
320d76f972
Separate service setup from traefik config for each, prep for future server separation
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];
|
|
};
|
|
}
|