Finish email config
This commit is contained in:
parent
7fcbc4cbbc
commit
de91ef0f43
1 changed files with 40 additions and 2 deletions
|
@ -1,10 +1,10 @@
|
|||
{ ... }:
|
||||
{
|
||||
accounts.email.accounts = {
|
||||
PurelyMail = {
|
||||
PurelyMail = rec {
|
||||
realName = "Tyler Beckman";
|
||||
address = "ty@myriation.xyz";
|
||||
userName = "ty@myriation.xyz";
|
||||
userName = address;
|
||||
primary = true;
|
||||
|
||||
folders = {
|
||||
|
@ -40,5 +40,43 @@
|
|||
|
||||
thunderbird.enable = true;
|
||||
};
|
||||
|
||||
Gmail = rec {
|
||||
realName = "Tyler Beckman";
|
||||
address = "tbeckman530@gmail.com";
|
||||
userName = address;
|
||||
flavor = "gmail.com";
|
||||
|
||||
folders = {
|
||||
inbox = "Inbox";
|
||||
drafts = "Drafts";
|
||||
sent = "Sent";
|
||||
trash = "Trash";
|
||||
};
|
||||
|
||||
gpg = {
|
||||
encryptByDefault = false;
|
||||
signByDefault = false;
|
||||
key = "A6299C20250223DCDEBA5E2C933B9437A97A56B8";
|
||||
};
|
||||
|
||||
smtp.tls.useStartTls = false;
|
||||
|
||||
thunderbird.enable = true;
|
||||
};
|
||||
|
||||
School = rec {
|
||||
realName = "Tyler Beckman";
|
||||
address = "tyler_beckman@mines.edu";
|
||||
userName = address;
|
||||
flavor = "outlook.office365.com";
|
||||
|
||||
folders = {
|
||||
inbox = "Inbox";
|
||||
drafts = "Drafts";
|
||||
sent = "Sent Items";
|
||||
trash = "Trash";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue