email and small tweaks

This commit is contained in:
Matt Nish-Lapidus 2025-03-27 12:23:31 -04:00
parent 2d95db31cd
commit c56d621059
4 changed files with 30 additions and 14 deletions

View file

@ -10,6 +10,7 @@
music
langs
emacs
taskwarrior
];
home = {

View file

@ -208,8 +208,8 @@
flood.enable = true;
openFirewall = true;
extraSettings = {
incomplete-dir = "/mnt/filez/media/downloads/torrents";
download-dir = "/mnt/filez/media/downloads/torrents/incomplete";
incomplete-dir = "/mnt/filez/media/downloads/torrents/incomplete";
download-dir = "/mnt/filez/media/downloads/torrents";
};
};

View file

@ -19,7 +19,7 @@
msmtp.enable = true;
flavor = "fastmail.com";
passwordCommand = "rbw get mu4e-fastmail";
thunderbird.enable = true;
# thunderbird.enable = true;
};
"admin@studyoftime.org" = {
@ -38,19 +38,19 @@
imap.host = "imap.dreamhost.com";
smtp.host = "imap.dreamhost.com";
userName = "admin@studyoftime.org";
thunderbird.enable = true;
# 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;
};
# "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;
# };
};
};

View file

@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
vit
tasksh
taskwarrior-tui
# syncall
];
programs.taskwarrior = {
enable = true;
};
}