diff options
| author | Grigory Shipunov | 2023-09-24 00:57:55 +0200 |
|---|---|---|
| committer | Grigory Shipunov | 2023-09-24 00:57:55 +0200 |
| commit | 78ae9ad8ae6fb36cb2e6950261564d19300d2474 (patch) | |
| tree | 95bc7ea105f0935e7186e2467ad18c2cc45a78f8 | |
| parent | 85a481f8f6e91342a274ef49abdd4812e3db690c (diff) | |
allow root logins
| -rw-r--r-- | modules/server/ssh.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/server/ssh.nix b/modules/server/ssh.nix index 7568eec..044e086 100644 --- a/modules/server/ssh.nix +++ b/modules/server/ssh.nix @@ -4,7 +4,7 @@ programs.mosh.enable = true; services.openssh = { enable = true; - settings.PermitRootLogin = "no"; + settings.PermitRootLogin = "prohibit-password"; settings.PasswordAuthentication = false; }; |
