nixos-mailserver/mail-server/users.nix

58 lines
1.6 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:58:42 +05:00
{ config, pkgs, lib, ... }:
with config.mailserver;
let
2017-11-05 13:42:39 +05:00
vmail_user = {
2017-10-18 12:20:44 +05:00
name = vmailUserName;
isNormalUser = false;
2017-09-02 16:23:37 +05:00
uid = vmailUIDStart;
home = mailDirectory;
createHome = true;
2017-10-18 12:20:44 +05:00
group = vmailGroupName;
2017-11-05 13:42:39 +05:00
};
# accountsToUser :: String -> UserRecord
2017-08-30 03:58:44 +05:00
accountsToUser = account: {
name = account.name;
isNormalUser = false;
2017-09-02 16:23:37 +05:00
group = vmailGroupName;
2017-08-30 03:58:44 +05:00
inherit (account) hashedPassword;
};
2017-11-05 13:42:39 +05:00
# mail_users :: { [String]: UserRecord }
mail_users = lib.foldl (prev: next: prev // { "${next.name}" = next; }) {}
2017-11-05 13:42:39 +05:00
(map accountsToUser (lib.attrValues loginAccounts));
in
{
2017-09-02 16:58:42 +05:00
config = lib.mkIf enable {
# set the vmail gid to a specific value
users.groups = {
"${vmailGroupName}" = { gid = vmailUIDStart; };
2017-09-02 16:58:42 +05:00
};
# define all users
2017-11-05 13:42:39 +05:00
users.users = mail_users // {
"${vmail_user.name}" = lib.mkForce vmail_user;
};
2017-09-02 16:58:42 +05:00
};
}