dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

commit 38eb12d794cbf4ccb0c2fae76e53dc34d6e1c57e
parent 237bf7283b483847185c39f8e4bf9fe507d3eb4e
Author: Chris <chris@echoz.io>
Date:   Tue,  7 Oct 2025 13:24:46 +0200

feat: update aerc binds and folder sorting

Diffstat:
Mmodules/aerc/binds.nix | 2+-
Mmodules/aerc/default.nix | 9+++++++++
2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/modules/aerc/binds.nix b/modules/aerc/binds.nix @@ -18,8 +18,8 @@ # Actions messages = { - d = ":read<Enter>,:move Trash<Enter>"; a = ":read<Enter>,:archive flat<Enter>"; + d = ":read<Enter>,:move Spam<Enter>"; f = ":move Important<Enter>"; m = ":compose<Enter>"; diff --git a/modules/aerc/default.nix b/modules/aerc/default.nix @@ -38,6 +38,15 @@ ] ); signature-cmd = lib.mkIf (config.signature.command != null) config.signature.command; + enable-folders-sort = true; + folders-sort = [ + "INBOX" + "Important" + "Archive" + "Drafts" + "Sent" + "Spam" + ]; }; }; }