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-with-signature.nix

41 lines
930 B
Nix
Raw Normal View History

{
imports = [ ../../accounts/email-test-accounts.nix ];
accounts.email.accounts = {
"hm@example.com" = {
notmuch.enable = true;
neomutt = {
enable = true;
extraConfig = ''
color status cyan default
'';
};
imap.port = 993;
signature = {
showSignature = "append";
text = ''
--
Test Signature
'';
};
};
};
programs.neomutt = {
enable = true;
vimKeys = false;
};
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
}
expectedSignature=$(normalizeStorePaths "home-files/.config/neomutt/hm@example.com")
assertFileContent "$expectedSignature" ${
./hm-example.com-signature-expected
}
'';
}