mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-29 13:41:03 +01:00
36 lines
929 B
Nix
36 lines
929 B
Nix
{
|
|
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 $(normalizeStorePaths home-files/.config/neomutt/neomuttrc) ${./neomutt-expected.conf}
|
|
expectedSignature=$(normalizeStorePaths "home-files/.config/neomutt/hm@example.com")
|
|
assertFileContent "$expectedSignature" ${./hm-example.com-signature-expected}
|
|
'';
|
|
}
|