From a7837e787bde530fa3238b2a247d12631cea680b Mon Sep 17 00:00:00 2001 From: teutat3s Date: Tue, 9 Jan 2024 01:39:09 +0100 Subject: [PATCH] fix: open firewall for SSH port --- hosts/pioneer-momo-koeln/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/pioneer-momo-koeln/configuration.nix b/hosts/pioneer-momo-koeln/configuration.nix index b52f7b44..49bb148e 100644 --- a/hosts/pioneer-momo-koeln/configuration.nix +++ b/hosts/pioneer-momo-koeln/configuration.nix @@ -28,7 +28,10 @@ }; # Enable the OpenSSH daemon. - services.openssh.enable = true; + services.openssh = { + enable = true; + openFirewall = true; + }; system.stateVersion = "22.05"; }