add aliases option type

This commit is contained in:
Robin Raymond 2017-11-21 10:55:27 +01:00
parent 64905a506b
commit a17093b867

View File

@ -60,6 +60,14 @@ in
'';
};
aliases = mkOption {
type = types.listOf types.str;
example = ["abuse@example.com" "postmaster@example.com"];
description = ''
A list of aliases of this login account.
'';
};
sieveScript = mkOption {
type = with types; nullOr lines;
default = null;