From a17093b867270662d5bbd4c62837d261f019f37d Mon Sep 17 00:00:00 2001 From: Robin Raymond Date: Tue, 21 Nov 2017 10:55:27 +0100 Subject: [PATCH] add aliases option type --- default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/default.nix b/default.nix index 6af2ad1..d5513f6 100644 --- a/default.nix +++ b/default.nix @@ -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;