misc_nixos-mailserver/mail-server/users.nix

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