1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-07 01:21:03 +01:00
home-manager/tests/modules/programs/alot/alot.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

27 lines
569 B
Nix

{
imports = [ ../../accounts/email-test-accounts.nix ];
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;
};
nmt.script = ''
assertFileExists home-files/.config/alot/config
assertFileContent home-files/.config/alot/config ${./alot-expected.conf}
'';
}