pihole port typo

This commit is contained in:
2025-08-03 17:16:29 +02:00
parent 31e48f0853
commit 2860854c03
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,7 @@
}; };
pihole = { pihole = {
enable = true; enable = true;
port = 8054; port = 8053;
}; };
}; };
}; };

View File

@@ -74,7 +74,7 @@ in {
podman.enable = true; podman.enable = true;
}; };
networking.firewall = { networking.firewall = lib.mkIf cfg.pihole.enable {
allowedTCPPorts = [53 5335]; allowedTCPPorts = [53 5335];
allowedUDPPorts = [53 5335]; allowedUDPPorts = [53 5335];
}; };