mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
e14e797041
Fixes tests on Darwin
29 lines
527 B
Nix
29 lines
527 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.stubs.neomutt = { };
|
|
|
|
test.asserts.assertions.expected = [
|
|
"The 'programs.neomutt.(binds|macros).map' list must contain at least one element."
|
|
];
|
|
};
|
|
}
|