summary refs log tree commit diff
path: root/nixos/modules/services/mail/dovecot.nix
diff options
context:
space:
mode:
authorSymphorien Gibol <symphorien+git@xlumurb.eu>2020-01-28 12:00:00 +0000
committerSymphorien Gibol <symphorien+git@xlumurb.eu>2020-01-28 12:00:00 +0000
commit28321223d8cc44bd67371c2f5543fe748582edce (patch)
tree4a3a0807a9d428f6bd89dbb6b1e517bac287707d /nixos/modules/services/mail/dovecot.nix
parent7a40ced06b02cfca5086209326180175953bef6a (diff)
downloadnixpkgs-28321223d8cc44bd67371c2f5543fe748582edce.tar
nixpkgs-28321223d8cc44bd67371c2f5543fe748582edce.tar.gz
nixpkgs-28321223d8cc44bd67371c2f5543fe748582edce.tar.bz2
nixpkgs-28321223d8cc44bd67371c2f5543fe748582edce.tar.lz
nixpkgs-28321223d8cc44bd67371c2f5543fe748582edce.tar.xz
nixpkgs-28321223d8cc44bd67371c2f5543fe748582edce.tar.zst
nixpkgs-28321223d8cc44bd67371c2f5543fe748582edce.zip
dovecot: add missing descriptions
Diffstat (limited to 'nixos/modules/services/mail/dovecot.nix')
-rw-r--r--nixos/modules/services/mail/dovecot.nix2
1 files changed, 2 insertions, 0 deletions
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" ]; };