From 8755bbf84609720a86e2e37483553c79314dcd8f Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Sat, 22 Feb 2025 10:56:57 +0800 Subject: [PATCH] feat: add ssh to config.nix --- configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index fd82ce5..8e48bdb 100644 --- a/configuration.nix +++ b/configuration.nix @@ -78,7 +78,9 @@ # List services that you want to enable: # Enable the OpenSSH daemon. - # services.openssh.enable = true; + services.openssh = { + enable = true; + }; # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ];