summary refs log tree commit diff
path: root/nixos/modules/services/mail/dovecot.nix
diff options
context:
space:
mode:
authorEmery Hemingway <emery@vfemail.net>2016-10-23 19:33:41 +0200
committerEmery Hemingway <emery@vfemail.net>2016-10-23 19:41:43 +0200
commitb67561939154eab53d10943f2eb255b9822194d3 (patch)
treeb1d139412197735da1a68d5c0c124c745d22de85 /nixos/modules/services/mail/dovecot.nix
parent795f968b17bca52f2e16ce16c4534c8a12cf85d8 (diff)
downloadnixlib-b67561939154eab53d10943f2eb255b9822194d3.tar
nixlib-b67561939154eab53d10943f2eb255b9822194d3.tar.gz
nixlib-b67561939154eab53d10943f2eb255b9822194d3.tar.bz2
nixlib-b67561939154eab53d10943f2eb255b9822194d3.tar.lz
nixlib-b67561939154eab53d10943f2eb255b9822194d3.tar.xz
nixlib-b67561939154eab53d10943f2eb255b9822194d3.tar.zst
nixlib-b67561939154eab53d10943f2eb255b9822194d3.zip
nixos: use types.lines for extraConfig
Diffstat (limited to 'nixos/modules/services/mail/dovecot.nix')
-rw-r--r--nixos/modules/services/mail/dovecot.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix
index e79d5dadd828..4c9df935debe 100644
--- a/nixos/modules/services/mail/dovecot.nix
+++ b/nixos/modules/services/mail/dovecot.nix
@@ -111,7 +111,7 @@ in
     };
 
     extraConfig = mkOption {
-      type = types.str;
+      type = types.lines;
       default = "";
       example = "mail_debug = yes";
       description = "Additional entries to put verbatim into Dovecot's config file.";