mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2025-01-06 16:14:17 +00:00
fix: Users map
This commit is contained in:
parent
5dde39956a
commit
33cec16c61
|
@ -27,7 +27,7 @@ in
|
|||
domain = "${cfg.domain}";
|
||||
rootUser = "${cfg.username}";
|
||||
rootHashedPassword = cfg.hashedMasterPassword;
|
||||
users = [
|
||||
users =
|
||||
(builtins.map
|
||||
(user: {
|
||||
username = "${user.username}";
|
||||
|
@ -35,7 +35,6 @@ in
|
|||
hashedPassword = user.hashedPassword;
|
||||
groups = [ "gitea" "nextcloud" "pleroma" ];
|
||||
})
|
||||
cfg.users)
|
||||
];
|
||||
cfg.users);
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue