mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
mail: enable archive
This commit is contained in:
parent
11b11c2be7
commit
0302463733
|
@ -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
|
||||||
|
|
37
users/rouven/modules/aerc/default.nix
Normal file
37
users/rouven/modules/aerc/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,6 +1,7 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./aerc
|
||||||
./foot
|
./foot
|
||||||
./git
|
./git
|
||||||
./gpg
|
./gpg
|
||||||
|
|
Loading…
Reference in a new issue