nixos/dovecot: no " in mailbox.name

This commit is contained in:
Robert Schütz 2018-02-09 12:20:55 +01:00
parent 78a17f5765
commit 6ceece6b59

View file

@ -113,7 +113,7 @@ let
mailboxes = { lib, pkgs, ... }: {
options = {
name = mkOption {
type = types.str;
type = types.strMatching ''[^"]+'';
example = "Spam";
description = "The name of the mailbox.";
};