flake and uoft email

This commit is contained in:
Matt Nish-Lapidus 2025-03-26 12:06:14 -04:00
parent 53070b0fb5
commit 0e234cc02f
3 changed files with 48 additions and 29 deletions

View file

@ -63,7 +63,6 @@
sway-launcher-desktop
swayidle
thunderbird-latest
emojify
smile
@ -102,7 +101,6 @@
openscad-unstable
openscad-lsp
picard
evolutionWithPlugins
plugdata
pavucontrol
qpwgraph

View file

@ -1,3 +1,4 @@
{ pkgs, ... }:
{
accounts.email = {
maildirBasePath = "/home/emenel/.maildir";
@ -18,6 +19,7 @@
msmtp.enable = true;
flavor = "fastmail.com";
passwordCommand = "rbw get mu4e-fastmail";
thunderbird.enable = true;
};
"admin@studyoftime.org" = {
@ -36,6 +38,18 @@
imap.host = "imap.dreamhost.com";
smtp.host = "imap.dreamhost.com";
userName = "admin@studyoftime.org";
thunderbird.enable = true;
};
"m.nishlapidus@utoronto.ca" = {
address = "m.nishlapidus@utoronto.ca";
realName = "Matt Nish-Lapidus";
imap.host = "outlook.office365.com";
imap.port = 993;
smtp.host = "smtp.office365.com";
smtp.port = 587;
userName = "m.nishlapidus@utoronto.ca";
thunderbird.enable = true;
};
};
};
@ -46,5 +60,12 @@
enable = true;
};
msmtp.enable = true;
thunderbird = {
enable = true;
package = pkgs.thunderbird-latest;
profiles.emenel = {
isDefault = true;
};
};
};
}