From 28321223d8cc44bd67371c2f5543fe748582edce Mon Sep 17 00:00:00 2001 From: Symphorien Gibol Date: Tue, 28 Jan 2020 12:00:00 +0000 Subject: [PATCH] dovecot: add missing descriptions --- nixos/modules/services/mail/dovecot.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix index 11d4e4ae5f8..230a2ae3f82 100644 --- a/nixos/modules/services/mail/dovecot.nix +++ b/nixos/modules/services/mail/dovecot.nix @@ -218,11 +218,13 @@ in type = with types; submodule { options = { globally = mkOption { + description = "Additional entries to add to the mail_plugins variable for all protocols"; type = plugins "top-level"; example = { enable = [ "virtual" ]; }; default = { enable = []; }; }; perProtocol = mkOption { + description = "Additional entries to add to the mail_plugins variable, per protocol"; type = attrsOf (plugins "corresponding per-protocol"); default = {}; example = { imap = [ "imap_acl" ]; };