nix/home/email.nix

29 lines
665 B
Nix
Raw Normal View History

2022-02-11 18:10:00 +00:00
{
accounts.email.accounts = {
mrhedgehog = {
realName = "Mr Hedgehog";
address = "hedgehog@mrhedgehog.xyz";
passwordCommand = "gopass show -o email/migadu_anon";
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;
};
};
};
}