From 4a47a605e8037e44a7864a55dc26cec0c2822386 Mon Sep 17 00:00:00 2001 From: r-raymond Date: Thu, 21 Jul 2016 18:35:29 +0200 Subject: [PATCH] sets the vmail gid to a specific value --- mail-server.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mail-server.nix b/mail-server.nix index 9ca9419..f6ab9e7 100644 --- a/mail-server.nix +++ b/mail-server.nix @@ -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; }; + } }