made aerc actually work for viewing emails.
This commit is contained in:
parent
b9277c7b0d
commit
cc3d5cadee
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue