implement alias list

This commit is contained in:
Robin Raymond 2017-11-21 11:18:07 +01:00
parent a17093b867
commit d94b8acd78
2 changed files with 14 additions and 4 deletions

View file

@ -61,8 +61,9 @@ in
};
aliases = mkOption {
type = types.listOf types.str;
type = with types; listOf types.str;
example = ["abuse@example.com" "postmaster@example.com"];
default = [];
description = ''
A list of aliases of this login account.
'';