nix/home/email.nix

23 lines
513 B
Nix
Raw Normal View History

2022-02-11 18:10:00 +00:00
{
accounts.email.accounts = {
thehedgehog = {
realName = "The Hedgehog";
2022-02-11 18:10:00 +00:00
address = "hedgehog@mrhedgehog.xyz";
2022-03-31 02:40:58 +00:00
passwordCommand = "bw get password 'Migadu Anon Mailbox'";
2022-02-11 18:10:00 +00:00
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;
};
};
};
}