mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 03:09:45 +01:00
5be9aa417a
This resolves the error The option `accounts.email.accounts.xyz.neomutt.sendMailCommand` is defined both null and not null, in `…/home-manager/modules/accounts/email.nix' and `…/home-manager/modules/accounts/email.nix'. that would occur previously when both neomutt and msmtp were enabled for an account.
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
|
|
|
config = {
|
|
home.username = "hm-user";
|
|
home.homeDirectory = "/home/hm-user";
|
|
xdg.configHome = mkForce "/home/hm-user/.config";
|
|
xdg.cacheHome = mkForce "/home/hm-user/.cache";
|
|
|
|
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
|
|
}
|
|
'';
|
|
};
|
|
}
|