From 138565efadeed6baf2a632c5dcc95a2031c77f86 Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Wed, 19 Mar 2025 12:42:05 -0500 Subject: [PATCH] fix root check --- common/users/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/users/default.nix b/common/users/default.nix index 551c7bb..8561d8d 100644 --- a/common/users/default.nix +++ b/common/users/default.nix @@ -43,7 +43,7 @@ in userConfig // { inherit name; - isNormalUser = lib.mkIf name != "root" true; + isNormalUser = lib.mkIf (name != "root") true; initialPassword = if (lib.hasAttr "initialPassword" userConfig) then userConfig.initialPassword else "password1"; extraGroups =