nixos-mailserver/mail-server/users.nix

51 lines
1.4 KiB
Nix
Raw Normal View History

# nixos-mailserver: a simple mail server
# Copyright (C) 2016-2017 Robin Raymond
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>
2017-09-02 16:23:37 +05:00
{ lib, vmailUIDStart, vmailUserName, vmailGroupName, domain, mailDirectory,
loginAccounts }:
let
vmail_user = [{
2017-09-02 16:23:37 +05:00
name = vmailUserName;
isNormalUser = false;
2017-09-02 16:23:37 +05:00
uid = vmailUIDStart;
home = mailDirectory;
createHome = true;
2017-09-02 16:23:37 +05:00
group = vmailGroupName;
}];
# accountsToUser :: String -> UserRecord
2017-08-30 03:58:44 +05:00
accountsToUser = account: {
name = account.name + "@" + domain;
isNormalUser = false;
2017-09-02 16:23:37 +05:00
group = vmailGroupName;
2017-08-30 03:58:44 +05:00
inherit (account) hashedPassword;
};
# mail_user :: [ UserRecord ]
2017-09-02 16:23:37 +05:00
mail_user = map accountsToUser (lib.attrValues loginAccounts);
in
{
# set the vmail gid to a specific value
groups = {
2017-09-02 16:23:37 +05:00
vmail = { gid = vmailUIDStart; };
};
# define all users
extraUsers = vmail_user ++ mail_user;
}