From 453d0494fbdc1d999a9e0c17330b3a648fcead94 Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Sun, 2 Sep 2018 15:00:06 +0900 Subject: [PATCH] notmuch: synchronize_flag should be "true" ...and not "True" According to doc https://notmuchmail.org/manpages/notmuch-config-1/ It also causes a crash in astroid : https://github.com/astroidmail/astroid/issues/546 --- modules/programs/notmuch.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/notmuch.nix b/modules/programs/notmuch.nix index ef9f2ec4..939b8ef6 100644 --- a/modules/programs/notmuch.nix +++ b/modules/programs/notmuch.nix @@ -89,7 +89,7 @@ in extraConfig = mkOption { type = types.attrsOf (types.attrsOf types.str); default = { - maildir = { synchronize_flags = "True"; }; + maildir = { synchronize_flags = "true"; }; }; description = '' Options that should be appended to the notmuch configuration file.