From 58c11b16cf7ce3eacc73c44c7270df8ae9890502 Mon Sep 17 00:00:00 2001 From: wo2wz <189177184+wo2wz@users.noreply.github.com> Date: Sun, 26 Oct 2025 21:44:21 -0400 Subject: [PATCH] Gutterman: set open ports in firewall --- hosts/Gutterman/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hosts/Gutterman/default.nix b/hosts/Gutterman/default.nix index 57accd8..8437a4f 100644 --- a/hosts/Gutterman/default.nix +++ b/hosts/Gutterman/default.nix @@ -29,6 +29,17 @@ CacheFromLocalhost=true ''; + networking.firewall = { + allowedTCPPorts = [ + 8000 + 8001 + ]; + allowedUDPPorts = [ + 8000 + 8001 + ]; + }; + environment.systemPackages = let nixpkgs-unstable = import inputs.nixpkgs-unstable {