1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-01 19:08:33 +02:00
home-manager/modules/programs/neomutt-accounts.nix

35 lines
812 B
Nix
Raw Normal View History

2020-01-22 00:52:01 +01:00
{ config, lib, ... }:
with lib;
{
options.neomutt = {
enable = mkEnableOption "NeoMutt";
sendMailCommand = mkOption {
type = types.nullOr types.str;
default = null;
example = "msmtpq --read-envelope-from --read-recipients";
description = ''
Command to send a mail. If not set, neomutt will be in charge of sending mails.
'';
};
extraConfig = mkOption {
type = types.lines;
default = "";
example = "color status cyan default";
description = ''
Extra lines to add to the folder hook for this account.
'';
};
};
config = mkIf config.neomutt.enable {
2020-02-02 00:39:17 +01:00
neomutt.sendMailCommand = mkOptionDefault (if config.msmtp.enable then
"msmtpq --read-envelope-from --read-recipients"
else
null);
2020-01-22 00:52:01 +01:00
};
}