17 lines
195 B
Nix
17 lines
195 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
with lib;
|
|
{
|
|
config = {
|
|
users.users = mapAttrs (
|
|
name: config:
|
|
{
|
|
inherit name;
|
|
}
|
|
// config
|
|
) config.mods.common.users;
|
|
};
|
|
}
|