commit 4650a561f2b729be3ac8be652be60dc1a8b573c2
parent e8ccec6709bdca73138bf1fb2f302bd666f44fc4
Author: Chris <chris@echoz.io>
Date: Tue, 7 Oct 2025 18:04:20 +0200
feat(aerc): show total messages in folders
Diffstat:
3 files changed, 13 insertions(+), 6 deletions(-)
diff --git a/flake.lock b/flake.lock
@@ -95,16 +95,17 @@
]
},
"locked": {
- "lastModified": 1759337100,
- "narHash": "sha256-CcT3QvZ74NGfM+lSOILcCEeU+SnqXRvl1XCRHenZ0Us=",
- "owner": "nix-community",
+ "lastModified": 1759851869,
+ "narHash": "sha256-RpJ7lDywFHdDe9VGr8AwuMw/sInwR1mNmmsb7/E6wUs=",
+ "owner": "echozio",
"repo": "home-manager",
- "rev": "004753ae6b04c4b18aa07192c1106800aaacf6c3",
+ "rev": "ba334bed0838204abf3d3f2a54563039ebc018d0",
"type": "github"
},
"original": {
- "owner": "nix-community",
+ "owner": "echozio",
"repo": "home-manager",
+ "rev": "ba334bed0838204abf3d3f2a54563039ebc018d0",
"type": "github"
}
},
diff --git a/flake.nix b/flake.nix
@@ -3,7 +3,8 @@
nixpkgs.url = "nixpkgs/nixos-unstable";
disko.url = "github:nix-community/disko/v1.12.0";
- home-manager.url = "github:nix-community/home-manager";
+ # home-manager.url = "github:nix-community/home-manager";
+ home-manager.url = "github:echozio/home-manager/ba334bed0838204abf3d3f2a54563039ebc018d0";
impermanence.url = "github:nix-community/impermanence";
sops-nix.url = "github:Mic92/sops-nix";
walker.url = "github:abenz1267/walker";
diff --git a/modules/aerc/default.nix b/modules/aerc/default.nix
@@ -64,6 +64,8 @@
mouse-enabled = true;
dirlist-tree = true;
fuzzy-complete = true;
+ sort = "-r date";
+ dirlist-right = ''{{if .Unread}}{{humanReadable .Unread}} {{end}}{{.Style (humanReadable .Exists) "dim"}}'';
};
openers = {
@@ -71,6 +73,9 @@
"application/pdf" = "firefox";
};
};
+ stylesets = {
+ default.user."dim.dim" = true;
+ };
};
};
};