diff --git a/modules/home-manager/email.nix b/modules/home-manager/email.nix index 710ab2e..27c6a18 100644 --- a/modules/home-manager/email.nix +++ b/modules/home-manager/email.nix @@ -4,12 +4,26 @@ lib, ... }: { - programs.himalaya.enable = true; + home.packages = with pkgs; [ + w3m + ]; programs.aerc = { enable = true; - extraConfig.general.unsafe-accounts-conf = true; + extraConfig = { + general.unsafe-accounts-conf = true; + viwer = { + pager = "less"; + }; + filters = { + "text/plain" = "colorize"; + "text/html" = "html | colorize"; + }; + }; }; + + programs.himalaya.enable = true; + accounts.email.accounts.gmail = { address = "gabevenberg@gmail.com"; primary = true;