mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
28 lines
496 B
Nix
28 lines
496 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs.neomutt = {
|
||
|
enable = true;
|
||
|
|
||
|
binds = [{
|
||
|
action = "complete-query";
|
||
|
key = "<Tab>";
|
||
|
map = [ ];
|
||
|
}];
|
||
|
|
||
|
macros = [{
|
||
|
action = "<change-folder>?<change-dir><home>^K=<enter><tab>";
|
||
|
key = "c";
|
||
|
map = [ ];
|
||
|
}];
|
||
|
};
|
||
|
|
||
|
test.asserts.assertions.expected = [
|
||
|
"The 'programs.neomutt.(binds|macros).map' list must contain at least one element."
|
||
|
];
|
||
|
};
|
||
|
}
|