Define mail-user & mail-group, even if unused

This commit is contained in:
niten 2023-09-24 12:51:15 -07:00
parent d943f94e18
commit 55cc1cb047
1 changed files with 12 additions and 0 deletions

View File

@ -18,6 +18,18 @@ in {
description = "Directory at which to store server state.";
};
mail-user = mkOption {
type = str;
description = "User as which to store mail.";
default = "fudo-mail";
};
mail-group = mkOption {
type = str;
description = "Group as which to store mail.";
default = "fudo-mail";
};
primary-domain = mkOption {
type = str;
description = "Primary domain name served by this server.";