mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 21:23:38 +00:00
25a6a6d298
* neomutt: support list in binds.map Closes #1245 Adds support for specifying programs.neomutt.binds[].map as a list. If specified as a list, then the binds will be concatenated with a ",". * neomutt: add deprecation warning for (binds|macros).map as string Added note that specifying 'programs.neomutt.(binds|macros).map' as a string is deprecated. Instead, use the list form. * neomutt: note deprecation warning in release notes Added note that specifying 'programs.neomutt.(binds|macros).map' as a single string is deprecated in favor of specifying it as a list * neomutt: add assertion that map is not empty Added an assertion that each 'programs.neomutt.(binds|macros).map' list contains at least one element.
9 lines
349 B
Nix
9 lines
349 B
Nix
{
|
|
neomutt-simple = ./neomutt.nix;
|
|
neomutt-with-msmtp = ./neomutt-with-msmtp.nix;
|
|
neomutt-not-primary = ./neomutt-not-primary.nix;
|
|
neomutt-with-binds = ./neomutt-with-binds.nix;
|
|
neomutt-with-binds-with-warning = ./neomutt-with-binds-with-warning.nix;
|
|
neomutt-with-binds-invalid-settings =
|
|
./neomutt-with-binds-invalid-settings.nix;
|
|
}
|