From 1b1e947dd8327b7df36e582c3675db466711f83e Mon Sep 17 00:00:00 2001 From: albert Date: Wed, 11 Dec 2024 00:13:50 +0100 Subject: [PATCH] temporarily allow ssh on quitman-rpi4 --- nixos/hosts/quitman-rpi4/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/hosts/quitman-rpi4/default.nix b/nixos/hosts/quitman-rpi4/default.nix index ca62ec91..ccb17345 100644 --- a/nixos/hosts/quitman-rpi4/default.nix +++ b/nixos/hosts/quitman-rpi4/default.nix @@ -55,4 +55,5 @@ "--advertise-routes 192.168.1.0/24,192.168.68.0/24" ]; boot.kernel.sysctl = { "net.ipv4.ip_forward" = true; }; + networking.firewall.allowedTCPPorts = [ 22 ]; }