From 948460ffc5b0000f920032f274f15d31a08e924c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Yule=20B=C3=A4dorf?= Date: Sun, 26 May 2024 19:08:04 +0200 Subject: [PATCH] iso: open SSH port in firewall --- hosts/iso/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/iso/default.nix b/hosts/iso/default.nix index c36b4f1..89246d1 100644 --- a/hosts/iso/default.nix +++ b/hosts/iso/default.nix @@ -6,4 +6,5 @@ isoImage.squashfsCompression = "gzip -Xcompression-level 1"; systemd.services.sshd.wantedBy = lib.mkForce [ "multi-user.target" ]; networking.networkmanager.enable = false; + services.openssh.openFirewall = lib.mkForce true; }