nix-config/configs/home-manager/email.nix

38 lines
650 B
Nix
Raw Normal View History

2024-04-16 13:30:03 -05:00
{
config,
pkgs,
lib,
...
}: {
home.packages = with pkgs; [
w3m
];
2024-04-16 13:30:03 -05:00
programs.aerc = {
enable = true;
extraConfig = {
general.unsafe-accounts-conf = true;
viwer = {
pager = "less";
};
filters = {
"text/plain" = "colorize";
"text/html" = "html | colorize";
};
};
2024-04-16 13:30:03 -05:00
};
programs.himalaya.enable = true;
2024-04-16 13:30:03 -05:00
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;
};
}