diff options
| author | Max Audron <audron@cocaine.farm> | 2023-08-11 16:51:35 +0200 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2023-08-11 16:51:35 +0200 |
| commit | 8f7c59e10a48c24120dd580b196acd419e5875d0 (patch) | |
| tree | 57a470c9e726b0e09aede6c8470467f790d77dc8 /modules/default.nix | |
| parent | refactor k8s module (diff) | |
add custom nixinate impl
Diffstat (limited to 'modules/default.nix')
| -rw-r--r-- | modules/default.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/default.nix b/modules/default.nix index 7f71fab..f94ece5 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -34,8 +34,10 @@ security.sudo.wheelNeedsPassword = false; services.openssh = { enable = true; - passwordAuthentication = false; - permitRootLogin = "no"; + settings = { + PasswordAuthentication = false; + PermitRootLogin = "no"; + }; }; # CPU |
