nixos/userborn: support users.users.<name>.createHome

This commit is contained in:
Lin Yinfeng 2024-09-11 18:09:29 +08:00
parent 876b1c2d5d
commit d3fdfb473d
No known key found for this signature in database
GPG Key ID: 46947CB61521FC42

View File

@ -104,7 +104,7 @@ in
inherit (opts) group;
};
}
) (lib.filterAttrs (_username: opts: opts.home != "/var/empty") userCfg.users);
) (lib.filterAttrs (_username: opts: opts.createHome && opts.home != "/var/empty") userCfg.users);
services.userborn = {
wantedBy = [ "sysinit.target" ];