nix/home-manager/modules/accounts/email.nix
2024-11-21 22:31:15 -07:00

44 lines
No EOL
1.1 KiB
Nix
Executable file

{ ... }:
{
accounts.email.accounts = {
PurelyMail = {
realName = "Tyler Beckman";
address = "ty@myriation.xyz";
userName = "ty@myriation.xyz";
primary = true;
folders = {
inbox = "INBOX";
drafts = "Drafts";
sent = "Sent";
trash = "Trash";
};
gpg = {
encryptByDefault = false;
signByDefault = false;
key = "A6299C20250223DCDEBA5E2C933B9437A97A56B8";
};
imap = {
host = "imap.purelymail.com";
port = 993;
tls = {
enable = true;
useStartTls = false;
};
};
smtp = {
host = "smtp.purelymail.com";
port = 465;
tls = {
enable = true;
useStartTls = false;
};
};
thunderbird.enable = true;
};
};
}