From ddea9d9ce043a9056a1b616ee3e75834c955f755 Mon Sep 17 00:00:00 2001 From: niten Date: Sun, 24 Sep 2023 13:31:24 -0700 Subject: [PATCH] Aha, don't set the name --- dovecot.nix | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/dovecot.nix b/dovecot.nix index 47b8ea5..3d19ae3 100644 --- a/dovecot.nix +++ b/dovecot.nix @@ -99,11 +99,6 @@ in { mailboxes = let mailboxOpts = { name, ... }: { options = { - name = mkOption { - type = str; - description = "Mailbox Name."; - default = name; - }; auto = mkOption { type = enum [ "no" "create" "subscribe" ]; description = "Whether to auto-create/subscribe."; @@ -153,10 +148,10 @@ in { auto = "create"; specialUse = "Sent"; }; - # Archive = { - # auto = "no"; - # specialUse = "Archive"; - # }; + Archive = { + auto = "no"; + specialUse = "Archive"; + }; Flagged = { auto = "subscribe"; specialUse = "Flagged";