Added aerc config

This commit is contained in:
FredzyW 2024-04-15 18:12:17 +02:00
parent f1a666cb18
commit fba3f5df54
2 changed files with 19 additions and 0 deletions

18
moduler/common/aerc.nix Normal file
View file

@ -0,0 +1,18 @@
{ pkgs, lib, ... }:
{
programs.aerc = {
enable = true;
extraConfig = {
filters = {
"text/plain"="colorize";
"text/calendar"="calendar";
"message/delivery-status"="colorize";
"message/rfc822"="colorize";
"text/html"="pandoc -f html -t plain | colorize";
"image/*"="feh -";
"application/pdf"="zathura -";
};
};
};
}