40 lines
837 B
Nix
40 lines
837 B
Nix
{
|
|
accounts.email.accounts = {
|
|
Personal = {
|
|
primary = true;
|
|
|
|
address = "me@sijmenschoon.nl";
|
|
aliases = [ "me@sijman.nl" "me@vijf.life" "info@sijmenschoon.nl" ];
|
|
realName = "Sijmen Schoon";
|
|
|
|
userName = "me@sijmenschoon.nl";
|
|
passwordCommand = "pass show email/personal";
|
|
|
|
imap.host = "imap.soverin.net";
|
|
smtp.host = "smtp.soverin.net";
|
|
|
|
folders.inbox = "INBOX";
|
|
|
|
mbsync = {
|
|
enable = true;
|
|
create = "maildir";
|
|
};
|
|
|
|
msmtp.enable = true;
|
|
};
|
|
|
|
Scintilla = {
|
|
primary = false;
|
|
|
|
address = "sijmens@scintilla.utwente.nl";
|
|
aliases = [ "sschoon@scintilla.utwente.nl" ];
|
|
realName = "Sijmen Schoon";
|
|
|
|
userName = "sijmens";
|
|
passwordCommand = "pass show email/scintilla";
|
|
|
|
folders.inbox = "INBOX";
|
|
};
|
|
};
|
|
}
|