added email clients.

This commit is contained in:
Gabe Venberg 2024-04-16 13:30:03 -05:00
parent a3d350ea15
commit e54ef2c4ce
4 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{
config,
pkgs,
lib,
...
}: {
programs.himalaya.enable = true;
programs.aerc = {
enable = true;
extraConfig.general.unsafe-accounts-conf = true;
};
accounts.email.accounts.gmail = {
address = "gabevenberg@gmail.com";
primary = true;
flavor = "gmail.com";
passwordCommand = "cat ~/keys/plaintext/gmail";
realName = "Gabe Venberg";
himalaya.enable = true;
aerc.enable = true;
};
}