sets the vmail gid to a specific value

This commit is contained in:
r-raymond 2016-07-21 18:35:29 +02:00 committed by GitHub
parent 92f1fe01bb
commit 4a47a605e8

View File

@ -31,4 +31,9 @@ in
environment.systemPackages = with pkgs; [
dovecot opendkim openssh postfix clamav rspamd rmilter
];
# set the vmail gid to a specific value
users.groups = {
vmail = { gid = vmail_id_start; };
}
}