mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
017b12de5b
Adding unmailboxes option to neomutt, which adds the `unmailboxes` option it to every account.email with neomutt enabled. See https://www.mutt.org/doc/manual/#mailboxes for more.
30 lines
611 B
Nix
30 lines
611 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
|
|
|
config = {
|
|
accounts.email.accounts = {
|
|
"hm@example.com" = {
|
|
msmtp.enable = true;
|
|
neomutt.enable = true;
|
|
imap.port = 993;
|
|
};
|
|
};
|
|
|
|
programs.neomutt.enable = true;
|
|
programs.neomutt.unmailboxes = true;
|
|
|
|
test.stubs.neomutt = { };
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/neomutt/hm@example.com
|
|
assertFileContent home-files/.config/neomutt/hm@example.com ${
|
|
./hm-example.com-unmailboxes-expected.conf
|
|
}
|
|
'';
|
|
};
|
|
}
|
|
|