mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
39 lines
929 B
Nix
39 lines
929 B
Nix
{ ... }:
|
|
{
|
|
programs = {
|
|
aerc = {
|
|
enable = true;
|
|
extraConfig = {
|
|
# general = {
|
|
# unsafe-accounts-conf = true;
|
|
# };
|
|
ui = {
|
|
sort = "date";
|
|
dirlist-tree = true;
|
|
fuzzy-complete = true;
|
|
styleset-name = "dracula";
|
|
threading-enabled = true;
|
|
icon-encrypted = "";
|
|
icon-signed = "";
|
|
icon-unknown = "";
|
|
icon-attachment = "";
|
|
icon-new = "";
|
|
icon-old = "";
|
|
icon-replied = "";
|
|
icon-marked = "";
|
|
icon-flagged = "";
|
|
icon-deleted = "";
|
|
};
|
|
filters = {
|
|
"text/plain" = "colorize";
|
|
"text/html" = "html | colorize";
|
|
"message/delivery-status" = "colorize";
|
|
"message/rfc822" = "colorize";
|
|
"text/calendar" = "calendar";
|
|
};
|
|
};
|
|
|
|
};
|
|
};
|
|
}
|