From 0033192efdd2f766c1cdb205f426dea9f6efac45 Mon Sep 17 00:00:00 2001 From: Gerg-L Date: Thu, 30 Jan 2025 18:26:07 -0500 Subject: [PATCH] change priority of PermitRootLogin for install iso to work --- nixosModules/misc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixosModules/misc.nix b/nixosModules/misc.nix index cb03c37..1c50169 100644 --- a/nixosModules/misc.nix +++ b/nixosModules/misc.nix @@ -45,7 +45,7 @@ } ]; settings = { - PermitRootLogin = lib.mkDefault "no"; + PermitRootLogin = lib.mkOverride 1001 "no"; PasswordAuthentication = false; KbdInteractiveAuthentication = false; };