Merge pull request #20 from eqyiel/fix-gid-start

users.nix: ensure the group getting its gid set is vmailGroupName
This commit is contained in:
Robin Raymond 2017-11-05 10:47:56 +01:00 committed by GitHub
commit 431dcc3b0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ in
config = lib.mkIf enable { config = lib.mkIf enable {
# set the vmail gid to a specific value # set the vmail gid to a specific value
users.groups = { users.groups = {
vmail = { gid = vmailUIDStart; }; "${vmailGroupName}" = { gid = vmailUIDStart; };
}; };
# define all users # define all users