Messing with aerc. Messing with neovim. Adding and removing some apps

This commit is contained in:
2022-10-25 21:44:56 -04:00
parent 76399cf6d5
commit d705c9b81d
2 changed files with 29 additions and 21 deletions

View File

@@ -4,7 +4,7 @@ let
secrets = import ./secrets.nix;
in
{
home.packages = with pkgs; [ aerc vdirsyncer khard imapnotify ]; # khal
home.packages = with pkgs; [ vdirsyncer khard imapnotify ]; # khal
programs.mbsync.enable = true;
@@ -18,6 +18,13 @@ in
programs.himalaya.enable = true;
programs.aerc = {
enable = true;
extraConfig = {
general = { unsafe-accounts-conf = true; };
};
};
programs.mu.enable = true;
accounts.email = {
@@ -56,6 +63,7 @@ in
mu.enable = true;
msmtp.enable = true;
neomutt.enable = true;
aerc.enable = true;
himalaya = {
enable = true;
settings = {
@@ -71,14 +79,14 @@ in
};
};
home.file.aerc-accounts = {
target = ".config/aerc/accounts.conf";
text = ''[FastMail]
source = maildir://~/Mail/FastMail
from = "Dustin Swan <dustin@dustinswan.com>"
outgoing = ${builtins.getEnv "HOME"}/.nix-profile/bin/msmtp --read-envelope-from
'';
};
# home.file.aerc-accounts = {
# target = ".config/aerc/accounts.conf";
# text = ''[FastMail]
# source = maildir://~/Mail/FastMail
# from = "Dustin Swan <dustin@dustinswan.com>"
# outgoing = ${builtins.getEnv "HOME"}/.nix-profile/bin/msmtp --read-envelope-from
# '';
# };
home.file.vdirsyncer = {
target = ".config/vdirsyncer/config";