12 lines
237 B
Nix
12 lines
237 B
Nix
{ config, lib, ... }:
|
|
|
|
lib.mkIf config.jalr.mailserver.enable {
|
|
users.users.vmail = {
|
|
uid = 10000;
|
|
group = "vmail";
|
|
home = config.jalr.mailserver.storageDir;
|
|
createHome = true;
|
|
};
|
|
|
|
users.groups.vmail.gid = 10000;
|
|
}
|