mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-29 13:41:03 +01:00
30 lines
947 B
Nix
30 lines
947 B
Nix
{
|
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
|
|
|
accounts.email.accounts = {
|
|
"hm@example.com" = {
|
|
neomutt = {
|
|
enable = true;
|
|
mailboxType = "imap";
|
|
extraConfig = ''
|
|
color status cyan default
|
|
'';
|
|
};
|
|
imap.port = 993;
|
|
};
|
|
};
|
|
|
|
programs.neomutt.enable = true;
|
|
|
|
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-imap-expected.conf}
|
|
assertFileContent home-files/.config/neomutt/hm@example.com ${./hm-example.com-imap-expected.conf}
|
|
|
|
confFile=$(grep -o \
|
|
'/nix/store/.*-account-command.sh/bin/account-command.sh' \
|
|
$TESTED/home-files/.config/neomutt/neomuttrc)
|
|
assertFileContent "$(normalizeStorePaths "$confFile")" ${./account-command.sh-expected}
|
|
'';
|
|
}
|