From 2eddbf32a4e8d23333aa787dfa560f7d048d85bd Mon Sep 17 00:00:00 2001 From: zuma Date: Wed, 5 Nov 2025 11:33:28 +0100 Subject: [PATCH] Fix: Change the SSH port --- configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index d605f9a..c49f15b 100755 --- a/configuration.nix +++ b/configuration.nix @@ -117,7 +117,7 @@ # Open ports in the firewall. networking.firewall.enable = true; networking.firewall.allowedTCPPorts = [ - 1972 # SSH + 22 # SSH ]; # networking.firewall.allowedUDPPorts = [ ... ];