nix/home/email.nix
2022-03-30 22:40:58 -04:00

28 lines
670 B
Nix

{
accounts.email.accounts = {
mrhedgehog = {
realName = "Mr Hedgehog";
address = "hedgehog@mrhedgehog.xyz";
passwordCommand = "bw get password 'Migadu Anon Mailbox'";
aliases = [
"tasvideos@mrhedgehog.xyz"
"meetup@mrhedgehog.xyz"
"domains@mrhedgehog.xyz"
"leaves@mrhedgehog.xyz"
];
userName = "hedgehog@mrhedgehog.xyz";
primary = true;
himalaya.enable = true;
imap = {
host = "imap.migadu.com";
tls.enable = true;
port = 993;
};
smtp = {
host = "smtp.migadu.com";
port = 465;
tls.enable = true;
};
};
};
}