1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 04:53:33 +02:00

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
This commit is contained in:
Matthieu Coudron 2018-09-02 15:00:06 +09:00 committed by Robert Helgesson
parent 97c6073d39
commit 453d0494fb
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -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.