aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/home-manager/modules/programs/getmail.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/home-manager/modules/programs/getmail.nix')
-rw-r--r--infra/libkookie/home-manager/modules/programs/getmail.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/infra/libkookie/home-manager/modules/programs/getmail.nix b/infra/libkookie/home-manager/modules/programs/getmail.nix
index f83c469ff245..eaf297cf2af0 100644
--- a/infra/libkookie/home-manager/modules/programs/getmail.nix
+++ b/infra/libkookie/home-manager/modules/programs/getmail.nix
@@ -11,8 +11,7 @@ let
with account;
let
passCmd = concatMapStringsSep ", " (x: "'${x}'") passwordCommand;
- renderedMailboxes =
- concatMapStringsSep ", " (x: "'${x}'") getmail.mailboxes;
+ renderedMailboxes = concatMapStrings (x: "'${x}', ") getmail.mailboxes;
retrieverType = if imap.tls.enable then
"SimpleIMAPSSLRetriever"
else