1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-06 16:57:03 +00:00

neomutt: fix default for 'map' in macros/binds (#6429)

https://github.com/nix-community/home-manager/pull/1885  changed 'map'
from a string to a list of string but the default wasn't updated accordingly.
When not defining map, you would get the warning `evaluation warning: teto profile: Specifying 'programs.neomutt.(binds|macros).map' as a string is deprecated, use a list of strings instead. See `.
This commit is contained in:
Matthieu Coudron 2025-02-11 19:33:45 +01:00 committed by GitHub
parent 8f351726c5
commit f0a31d38e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -123,7 +123,7 @@ let
"smime"
];
in with types; either (enum menus) (listOf (enum menus));
default = "index";
default = [ "index" ];
description = "Select the menu to bind the command to.";
};