From 19d0371248b0a3771afb06a5507a6cd8f456cad4 Mon Sep 17 00:00:00 2001 From: notohh Date: Fri, 20 Oct 2023 18:31:27 -0400 Subject: [PATCH] openssh: permit root login --- modules/openssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openssh.nix b/modules/openssh.nix index 749d2ec..14d7c60 100644 --- a/modules/openssh.nix +++ b/modules/openssh.nix @@ -5,7 +5,7 @@ KbdInteractiveAuthentication = false; PasswordAuthentication = lib.mkForce false; PubkeyAuthentication = lib.mkForce true; - PermitRootLogin = lib.mkForce "no"; + PermitRootLogin = lib.mkForce "yes"; StreamLocalBindUnlink = "yes"; GatewayPorts = "clientspecified"; };