add a module for pihole ports

This commit is contained in:
Andreas Zweili 2022-01-25 19:03:15 +01:00
parent f159fc2ec0
commit d774c16fc6
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{ ... }:
{
networking = {
firewall.allowedTCPPorts = [
53 # DNS
67 # DHCP
80 # Web Interface
];
firewall.allowedUDPPorts = [
53 # DNS
67 # DHCP
];
};
}