From 1c362fbf82dc54e0e45939c7c6874538bc27c766 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Mon, 12 Aug 2024 14:42:14 +0200 Subject: [PATCH] feat(openssh): enable openssh server --- nixos/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 7f25949..27e30e6 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -226,7 +226,7 @@ }; # Enable the OpenSSH daemon. - # services.openssh.enable = true; + services.openssh.enable = true; # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ];