nixfleet/modules/adguard-home/default.nix
Andrea Ciceri f7302479b3
Some checks failed
/ test (push) Has been cancelled
Switch to catppuccin
2024-06-01 08:39:18 +02:00

11 lines
220 B
Nix

{
services.adguardhome = {
enable = true;
port = 3000;
settings = {
openFirewall = true;
};
};
networking.firewall.allowedTCPPorts = [3000 53];
networking.firewall.allowedUDPPorts = [53];
}