From 137cebbe9f47a449e9340f1458042ba2d3b1d5d8 Mon Sep 17 00:00:00 2001 From: clerie Date: Fri, 21 Apr 2023 20:41:49 +0200 Subject: [PATCH] configuration/common: fix ssh settings option names --- configuration/common/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configuration/common/default.nix b/configuration/common/default.nix index 253e63c..021f10d 100644 --- a/configuration/common/default.nix +++ b/configuration/common/default.nix @@ -53,9 +53,9 @@ services.openssh.enable = true; services.openssh.settings = { - passwordAuthentication = false; - kbdInteractiveAuthentication = false; - permitRootLogin = lib.mkDefault "no"; + PasswordAuthentication = false; + KbdInteractiveAuthentication = false; + PermitRootLogin = lib.mkDefault "no"; }; nix.gc = lib.mkDefault {