32 lines
541 B
Nix
32 lines
541 B
Nix
{ config, lib, ... }:
|
|
let
|
|
cfg = config.my.home.mail;
|
|
|
|
mkRelatedOption = desc: lib.mkEnableOption desc // { default = cfg.enable; };
|
|
in
|
|
{
|
|
imports = [
|
|
./accounts
|
|
./himalaya
|
|
./msmtp
|
|
];
|
|
|
|
options.my.home.mail = with lib; {
|
|
enable = my.mkDisableOption "email configuration";
|
|
|
|
himalaya = {
|
|
enable = mkRelatedOption "himalaya configuration";
|
|
};
|
|
|
|
msmtp = {
|
|
enable = mkRelatedOption "msmtp configuration";
|
|
};
|
|
};
|
|
|
|
config = {
|
|
accounts.email = {
|
|
maildirBasePath = "mail";
|
|
};
|
|
};
|
|
}
|