From 869cd8d24aae645ee9135e5b9e4c6925ac02e376 Mon Sep 17 00:00:00 2001 From: notohh Date: Wed, 26 Apr 2023 21:23:20 -0400 Subject: [PATCH] ssh: enable root login --- modules/openssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openssh.nix b/modules/openssh.nix index 04caab9..48a7fbc 100644 --- a/modules/openssh.nix +++ b/modules/openssh.nix @@ -5,7 +5,7 @@ KbdInteractiveAuthentication = false; PasswordAuthentication = false; PubkeyAuthentication = true; - PermitRootLogin = "no"; + PermitRootLogin = "yes"; StreamLocalBindUnlink = "yes"; GatewayPorts = "clientspecified"; };