mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
cb09a968e9
This option provides a more convenient way to overlay dummy packages. It also adds a function `config.lib.test.mkStubPackage` that can, e.g., be used for `package` options.
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
|
|
|
config = {
|
|
accounts.email.accounts = {
|
|
"hm@example.com" = {
|
|
notmuch.enable = true;
|
|
neomutt = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
color status cyan default
|
|
'';
|
|
};
|
|
imap.port = 993;
|
|
};
|
|
};
|
|
|
|
programs.neomutt = {
|
|
enable = true;
|
|
vimKeys = false;
|
|
|
|
binds = [
|
|
{
|
|
action = "complete-query";
|
|
key = "<Tab>";
|
|
map = [ "editor" ];
|
|
}
|
|
{
|
|
action = "sidebar-prev";
|
|
key = "\\Cp";
|
|
map = [ "index" "pager" ];
|
|
}
|
|
];
|
|
|
|
macros = [
|
|
{
|
|
action = "<save-message>?<tab>";
|
|
key = "s";
|
|
map = [ "index" ];
|
|
}
|
|
{
|
|
action = "<change-folder>?<change-dir><home>^K=<enter><tab>";
|
|
key = "c";
|
|
map = [ "index" "pager" ];
|
|
}
|
|
];
|
|
};
|
|
|
|
test.stubs.neomutt = { };
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/neomutt/neomuttrc
|
|
assertFileExists home-files/.config/neomutt/hm@example.com
|
|
assertFileContent home-files/.config/neomutt/neomuttrc ${
|
|
./neomutt-with-binds-expected.conf
|
|
}
|
|
assertFileContent home-files/.config/neomutt/hm@example.com ${
|
|
./hm-example.com-expected
|
|
}
|
|
'';
|
|
};
|
|
}
|