1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 02:36:54 +00:00
home-manager/tests/modules/programs/neomutt/neomutt.nix

33 lines
721 B
Nix
Raw Normal View History

2020-01-22 00:52:01 +01:00
{
imports = [ ../../accounts/email-test-accounts.nix ];
accounts.email.accounts = {
"hm@example.com" = {
notmuch.enable = true;
neomutt = {
enable = true;
extraConfig = ''
color status cyan default
'';
2020-01-22 00:52:01 +01:00
};
imap.port = 993;
2020-01-22 00:52:01 +01:00
};
};
2020-01-22 00:52:01 +01:00
programs.neomutt = {
enable = true;
vimKeys = false;
2020-01-22 00:52:01 +01:00
};
nmt.script = ''
assertFileExists home-files/.config/neomutt/neomuttrc
assertFileExists home-files/.config/neomutt/hm@example.com
assertFileContent home-files/.config/neomutt/neomuttrc ${
./neomutt-expected.conf
}
assertFileContent home-files/.config/neomutt/hm@example.com ${
./hm-example.com-expected
}
'';
2020-01-22 00:52:01 +01:00
}