From e4d192ce6c5a02a379ef0bf2265c5c48070882c9 Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Wed, 29 Jan 2025 22:33:20 +0100 Subject: [PATCH] open firewall port 53 for unbound --- hosts/genepi/dns.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hosts/genepi/dns.nix b/hosts/genepi/dns.nix index 5779bcf..e5aca3e 100644 --- a/hosts/genepi/dns.nix +++ b/hosts/genepi/dns.nix @@ -1,9 +1,9 @@ { config, ... }: { - # networking.firewall.interfaces."${config.services.tailscale.interfaceName}" = { - # allowedTCPPorts = [ 53 ]; - # allowedUDPPorts = [ 53 ]; - # }; + networking.firewall.interfaces."${config.services.tailscale.interfaceName}" = { + allowedTCPPorts = [ 53 ]; + allowedUDPPorts = [ 53 ]; + }; services.unbound = { enable = true;