From ef886a63a4aea7235c3c268c379a66313a7a86b3 Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Thu, 23 May 2024 23:56:05 +0200 Subject: [PATCH] Remove conflicting firewall enable option --- hosts/franz/arion/dns/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/hosts/franz/arion/dns/default.nix b/hosts/franz/arion/dns/default.nix index ef548b2..70de270 100644 --- a/hosts/franz/arion/dns/default.nix +++ b/hosts/franz/arion/dns/default.nix @@ -7,8 +7,5 @@ # Fix containers not being able to use pihole as dns networking.resolvconf.useLocalResolver = true; - networking.firewall = { - enable = true; - allowedTCPPorts = [80 443]; - }; + networking.firewall.allowedTCPPorts = [80 443]; }