From e2fd2ba798d26435ec5e0bf3ae9e8ae37114f482 Mon Sep 17 00:00:00 2001 From: Andreas Schaafsma Date: Wed, 13 Nov 2024 02:32:22 +0100 Subject: [PATCH] fix renamed key warning --- systems/x86_64-linux/drivebystation-nix/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/systems/x86_64-linux/drivebystation-nix/default.nix b/systems/x86_64-linux/drivebystation-nix/default.nix index 75ebc26..2d140a5 100644 --- a/systems/x86_64-linux/drivebystation-nix/default.nix +++ b/systems/x86_64-linux/drivebystation-nix/default.nix @@ -107,7 +107,10 @@ in services.openssh = { enable = true; - passwordAuthentication = true; + settings.PasswordAuthentication = true; + # settings = { + # # passwordAuthentication = true; + # }; };