diff options
author | Linnnus <[email protected]> | 2023-09-09 16:58:15 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-09-09 16:58:15 +0200 |
commit | 5d6e0aeefb79cecd2193ecec593eb1df65f76a8b (patch) | |
tree | c42803d23427310d1764fa83aae98e0d5f235cf0 /hosts | |
parent | 35bc38ad9c581a2b4e2e122f3701cca047e17a4c (diff) |
Bump nixpkgs 22.11 -> 23.05
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/ahmed/ssh.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/ahmed/ssh.nix b/hosts/ahmed/ssh.nix index f737437..dfe4c30 100644 --- a/hosts/ahmed/ssh.nix +++ b/hosts/ahmed/ssh.nix @@ -7,7 +7,7 @@ networking.firewall.allowedTCPPorts = [ 22 ]; services.openssh = { enable = true; - passwordAuthentication = false; + settings.PasswordAuthentication = false; }; users.users = lib.genAttrs ["root" "linus"] (_: { |