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:
parent
8f351726c5
commit
f0a31d38e6
1 changed files with 1 additions and 1 deletions
|
@ -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.";
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue