mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
37 lines
956 B
Nix
37 lines
956 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
|
|
'';
|
|
mailboxName = "someCustomName";
|
|
extraMailboxes = [
|
|
"Sent"
|
|
{
|
|
mailbox = "Junk Email";
|
|
name = "Spam";
|
|
}
|
|
{ mailbox = "Trash"; }
|
|
];
|
|
};
|
|
imap.port = 993;
|
|
};
|
|
};
|
|
|
|
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-with-named-mailboxes-expected.conf}
|
|
assertFileContent home-files/.config/neomutt/hm@example.com ${./hm-example.com-expected}
|
|
'';
|
|
}
|