This commit is contained in:
mjallen18
2026-01-03 11:22:12 -06:00
parent e6a69cc21f
commit cd03862e4b

View File

@@ -18,6 +18,8 @@ let
) )
then then
defaultPasswordFile defaultPasswordFile
else
config.${namespace}.user.hashedPasswordFile
); );
}; };
@@ -70,7 +72,7 @@ in
hashedPassword = mkOpt (nullOr str) null "Hashed password for the user."; hashedPassword = mkOpt (nullOr str) null "Hashed password for the user.";
hashedPasswordFile = hashedPasswordFile =
mkOpt (nullOr path) defaultPasswordFile mkOpt (nullOr path) null
"Path to the password file for this user account"; "Path to the password file for this user account";
mutableUsers = mkBoolOpt false "Whether users are mutable (can be modified after creation)."; mutableUsers = mkBoolOpt false "Whether users are mutable (can be modified after creation).";