diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-09 21:25:50 -0400 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-09 21:25:50 -0400 | 
| commit | 552e495b17725956605a6d63f5f12f33ce03d568 (patch) | |
| tree | b8e706298e178d17410a0e93f514dc6d8dbe8fea | |
| parent | bf7b291b267d64b810d365af47e1b16599b43f3e (diff) | |
rename
Diffstat (limited to '')
| -rw-r--r-- | modules/ssh.nix | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/modules/ssh.nix b/modules/ssh.nix index a389210..061f5fe 100644 --- a/modules/ssh.nix +++ b/modules/ssh.nix @@ -3,7 +3,9 @@  {    services.openssh = {      enable = true; -    permitRootLogin = "no"; -    passwordAuthentication = false; +    settings = { +        permitRootLogin = "no"; +        passwordAuthentication = false; +    };    };  } | 
