From 5b6bd9b511f160772ba23e691f70d3483c090692 Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Mon, 28 Aug 2023 20:33:04 +0200 Subject: [PATCH] enable ssh --- nixos/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 0764615..b0fea6c 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -171,7 +171,7 @@ # SSH Server, maybe enable at some point services.openssh = { - enable = false; + enable = true; # Forbid root login through SSH. settings.PermitRootLogin = "no"; # Use keys only. Remove if you want to SSH using password (not recommended)