From 55a021961c36248c3eea8a8014fb8fe0c2d5fe31 Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Thu, 25 Sep 2025 16:42:37 +0900 Subject: [PATCH] feat(vps): allow root login via ssh key --- hosts/vps/modules/services/openssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/vps/modules/services/openssh.nix b/hosts/vps/modules/services/openssh.nix index feaa722..728a51e 100644 --- a/hosts/vps/modules/services/openssh.nix +++ b/hosts/vps/modules/services/openssh.nix @@ -3,7 +3,7 @@ enable = true; settings = { PasswordAuthentication = false; - PermitRootLogin = "no"; + PermitRootLogin = "prohibit-password"; }; }; }