mail: enable archive

This commit is contained in:
Rouven Seifert 2024-02-26 19:14:36 +01:00
parent 11b11c2be7
commit 0302463733
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
3 changed files with 42 additions and 0 deletions

View file

@ -122,6 +122,10 @@ in
auto = "create"; auto = "create";
specialUse = "Trash"; specialUse = "Trash";
}; };
Archive = {
auto = "no";
specialUse = "Archive";
};
}; };
modules = [ modules = [
pkgs.dovecot_pigeonhole pkgs.dovecot_pigeonhole

View file

@ -0,0 +1,37 @@
{ ... }:
{
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-deleted = "";
};
filters = {
"text/plain" = "colorize";
"text/html" = "html | colorize";
"message/delivery-status" = "colorize";
"message/rfc822" = "colorize";
"text/calendar" = "calendar";
};
};
};
};
}

View file

@ -1,6 +1,7 @@
{ ... }: { ... }:
{ {
imports = [ imports = [
./aerc
./foot ./foot
./git ./git
./gpg ./gpg