2024-09-09 00:22:14 +00:00
|
|
|
{
|
2024-09-13 01:50:53 +00:00
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
cfg = config.custom.settings.accounts;
|
|
|
|
in {
|
|
|
|
options.custom.settings.accounts.enable = mkOption {default = false;};
|
2024-09-09 00:22:14 +00:00
|
|
|
|
|
|
|
config.home-manager.users.${config.custom.username} = mkIf cfg.enable {
|
|
|
|
accounts = {
|
|
|
|
email.accounts.${config.custom.username} = {
|
|
|
|
primary = true;
|
|
|
|
address = "${config.custom.username}@${config.custom.domain}";
|
|
|
|
realName = config.custom.realname;
|
|
|
|
userName = "${config.custom.username}@${config.custom.domain}";
|
|
|
|
|
|
|
|
imap = {
|
|
|
|
host = "imap.fastmail.com";
|
|
|
|
port = 993;
|
|
|
|
};
|
|
|
|
|
|
|
|
smtp = {
|
|
|
|
host = "smtp.fastmail.com";
|
|
|
|
port = 465;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|