commit 3753bdd9e360ce8cab9194f5788c733728bebd24 parent 162547b7e5f07e01193ce0131f122a5797ae5af1 Author: MTRNord <mtrnord1@gmail.com> Date: Thu, 5 Oct 2023 10:25:04 +0200 Fix ports Diffstat:
| M | nixos/common/lib/pdns.nix | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/nixos/common/lib/pdns.nix b/nixos/common/lib/pdns.nix @@ -6,5 +6,6 @@ secretFile = config.sops.secrets.pdns_api_key.path; }; - networking.firewall.allowedTCPPorts = [ 8081 ]; + networking.firewall.allowedTCPPorts = [ 8081 53 ]; + networking.firewall.allowedUDPPorts = [ 8081 53 ]; }