fix(users): configuration mistakes

This commit is contained in:
Sk7Str1p3 2026-05-03 15:08:26 +03:00
parent 0c590003fd
commit 9b1f78dec7
No known key found for this signature in database
GPG key ID: 4DD995933D06D43B

View file

@ -47,11 +47,11 @@
in in
{ {
description = cfg.realName or user; description = cfg.realName or user;
password = config.sops.secrets."${user}/userPassword"; hashedPasswordFile = config.sops.secrets."${user}/userPassword".path;
isNormalUser = true; isNormalUser = true;
shell = pkgs."${cfg.shell}"; shell = pkgs."${cfg.shell}";
extraGroups = cfg.extraGroups or [ ]; extraGroups = cfg.extraGroups or [ ];
}; };
}) cfg.users }) cfg.usersList
); );
} }