nix-config/users/tacocat/email.nix

52 lines
1.1 KiB
Nix
Raw Normal View History

2023-11-25 00:19:48 +00:00
{...}: {
2023-12-21 06:37:09 +00:00
accounts.email.accounts = {
2023-11-25 00:19:48 +00:00
"aria" = {
address = "aria@chytrid.org";
userName = "aria@chytrid.org";
realName = "Aria Nolan";
primary = true;
thunderbird.enable = true;
smtp = {
host = "mail.nordhost.no";
port = 465;
};
imap = {
host = "mail.nordhost.no";
port = 993;
};
};
"tacocat" = {
address = "tacocat@chytrid.org";
userName = "tacocat@chytrid.org";
realName = "tacocat";
thunderbird.enable = true;
smtp = {
host = "mail.nordhost.no";
port = 465;
};
imap = {
host = "mail.nordhost.no";
port = 993;
};
};
"school" = {
address = "bfn1292@g.rit.edu";
realName = "Aria Nolan";
flavor = "gmail.com";
2023-11-25 00:35:24 +00:00
thunderbird = {
enable = true;
settings = id: {
"mail.server.server_${id}.authMethod" = 10;
};
};
2023-11-25 00:19:48 +00:00
};
};
programs.thunderbird = {
enable = true;
profiles."aria" = {
isDefault = true;
};
};
2023-11-24 03:25:35 +00:00
}