mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
40 lines
928 B
Nix
40 lines
928 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
||
|
|
||
|
config = {
|
||
|
accounts.email.accounts = {
|
||
|
"hm@example.com" = {
|
||
|
primary = true;
|
||
|
msmtp.enable = true;
|
||
|
neomutt = {
|
||
|
enable = true;
|
||
|
extraConfig = ''
|
||
|
color status cyan default
|
||
|
'';
|
||
|
};
|
||
|
imap.port = 993;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
programs.neomutt.enable = true;
|
||
|
|
||
|
nixpkgs.overlays =
|
||
|
[ (self: super: { neomutt = pkgs.writeScriptBin "dummy-neomutt" ""; }) ];
|
||
|
|
||
|
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-msmtp-expected.conf
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
}
|