Added aerc config
This commit is contained in:
parent
f1a666cb18
commit
fba3f5df54
2 changed files with 19 additions and 0 deletions
|
@ -21,6 +21,7 @@
|
||||||
../moduler/common/lazygit.nix
|
../moduler/common/lazygit.nix
|
||||||
../moduler/common/spotifyd.nix
|
../moduler/common/spotifyd.nix
|
||||||
../moduler/common/ssh.nix
|
../moduler/common/ssh.nix
|
||||||
|
../moduler/common/aerc.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
|
|
18
moduler/common/aerc.nix
Normal file
18
moduler/common/aerc.nix
Normal 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 -";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue