2021-04-07 21:45:50 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib; {
|
|
|
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
|
|
|
|
|
|
|
config = {
|
|
|
|
accounts.email.accounts = {
|
|
|
|
"hm@example.com" = {
|
|
|
|
gpg = {
|
|
|
|
encryptByDefault = true;
|
|
|
|
signByDefault = true;
|
|
|
|
};
|
|
|
|
neomutt.enable = true;
|
|
|
|
imap.port = 993;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.neomutt.enable = true;
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs.neomutt = { };
|
2021-04-07 21:45:50 +02: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-gpg-expected.conf
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|