2019-08-21 09:38:52 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
|
|
|
|
|
|
|
config = {
|
|
|
|
accounts.email.accounts = {
|
|
|
|
"hm@example.com" = {
|
|
|
|
notmuch.enable = true;
|
|
|
|
alot = {
|
|
|
|
contactCompletion = { };
|
|
|
|
extraConfig = ''
|
|
|
|
auto_remove_unread = True
|
|
|
|
ask_subject = False
|
|
|
|
handle_mouse = True
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
imap.port = 993;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.alot = { enable = true; };
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs.alot = { };
|
2019-08-21 09:38:52 +02:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/alot/config
|
|
|
|
assertFileContent home-files/.config/alot/config ${./alot-expected.conf}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|