mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 21:23:38 +00: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:
parent
97c6073d39
commit
453d0494fb
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ in
|
||||||
extraConfig = mkOption {
|
extraConfig = mkOption {
|
||||||
type = types.attrsOf (types.attrsOf types.str);
|
type = types.attrsOf (types.attrsOf types.str);
|
||||||
default = {
|
default = {
|
||||||
maildir = { synchronize_flags = "True"; };
|
maildir = { synchronize_flags = "true"; };
|
||||||
};
|
};
|
||||||
description = ''
|
description = ''
|
||||||
Options that should be appended to the notmuch configuration file.
|
Options that should be appended to the notmuch configuration file.
|
||||||
|
|
Loading…
Reference in a new issue