From 8d475b2ee650b08b43530d2011c9c0b458bca595 Mon Sep 17 00:00:00 2001 From: Baptiste Jonglez Date: Sun, 2 Jun 2024 21:35:08 +0200 Subject: [PATCH] Fix nixos deprecation warning --- nix/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/configuration.nix b/nix/configuration.nix index d88d6ef..4d25bc3 100644 --- a/nix/configuration.nix +++ b/nix/configuration.nix @@ -73,7 +73,7 @@ SystemMaxUse=1G # Enable the OpenSSH daemon and disable password login. services.openssh.enable = true; - services.openssh.passwordAuthentication = false; + services.openssh.settings.PasswordAuthentication = false; virtualisation.docker = { enable = true;