From bb18c7d14160ed242c646f4a7e15f248b757966b Mon Sep 17 00:00:00 2001 From: joachimschmidt557 Date: Sun, 7 Aug 2022 20:38:49 +0200 Subject: [PATCH] dustbowl: disable firewall --- nixos/dustbowl.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/dustbowl.nix b/nixos/dustbowl.nix index d3fc447..bf30607 100644 --- a/nixos/dustbowl.nix +++ b/nixos/dustbowl.nix @@ -235,8 +235,9 @@ nixpkgs.overlays = [ emacs-overlay.overlay ]; # Open ports in the firewall. - networking.firewall.allowedTCPPorts = [ 8080 6600 ]; - networking.firewall.allowedUDPPorts = [ 8080 ]; + networking.firewall.enable = false; + # networking.firewall.allowedTCPPorts = [ 8080 6600 ]; + # networking.firewall.allowedUDPPorts = [ 8080 ]; # Enable CUPS to print documents. services.printing.enable = true;