From 5500abd33fb813ce54b46a561130e014fd06ff94 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Thu, 25 Jul 2024 04:25:21 -0700 Subject: [PATCH] snowhawk: explicit port 22 allowance --- hosts/snowhawk/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/snowhawk/configuration.nix b/hosts/snowhawk/configuration.nix index f377bc2..8c55464 100644 --- a/hosts/snowhawk/configuration.nix +++ b/hosts/snowhawk/configuration.nix @@ -114,7 +114,7 @@ services.avahi.enable = true; # Open ports in the firewall. - # networking.firewall.allowedTCPPorts = [ ... ]; + networking.firewall.allowedTCPPorts = [ 22 ]; # networking.firewall.allowedUDPPorts = [ ... ]; # Or disable the firewall altogether. # networking.firewall.enable = false;