This commit is contained in:
Michael Thomson
2026-02-05 10:11:53 -05:00
parent 73fbc14e7a
commit 004ccccc35
11 changed files with 1170 additions and 634 deletions

View File

@@ -5,6 +5,29 @@
...
}: {
programs = {
aerc = {
enable = true;
extraConfig = {
ui = {
sort = "-r arrival";
threading-enabled = true;
fuzzy-complete = true;
};
general = {
default-save-path = "~/Downloads";
log-file = "~/.aerc.log";
unsafe-accounts-conf = true;
};
compose = {
address-book-cmd = "notmuch address \"%s\"";
};
filters = {
"text/plain" = "colorize";
"text/calendar" = "calendar";
"text/html" = "html | colorize";
};
};
};
msmtp = {
enable = true;
};
@@ -32,10 +55,11 @@
email = {
accounts.personal = {
primary = true;
address = "michael@michaelthomson.dev";
address = "me@michaelthomson.dev";
realName = "Michael Thomson";
userName = "michael@michaelthomson.dev";
passwordCommand = "rbw get --folder email michael@michaelthomson.dev";
userName = "me@michaelthomson.dev";
# passwordCommand = "rbw get --folder email me@michaelthomson.dev";
passwordCommand = "cat ~/auth/email";
mbsync = {
enable = true;
create = "both";
@@ -61,6 +85,12 @@
notmuch = {
enable = true;
};
aerc = {
enable = true;
# extraAccounts = {
# source = "maildir://~/Maildir/work";
# };
};
};
};
};