summaryrefslogtreecommitdiff
path: root/wrappers/aerc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers/aerc/default.nix')
-rw-r--r--wrappers/aerc/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/wrappers/aerc/default.nix b/wrappers/aerc/default.nix
new file mode 100644
index 0000000..fe5f490
--- /dev/null
+++ b/wrappers/aerc/default.nix
@@ -0,0 +1,15 @@
+{
+ pkgs,
+ lib,
+ ...
+}: {
+ wrappers.aerc = {
+ basePackage = pkgs.aerc;
+ flags = [
+ "--aerc-conf"
+ ./aerc.conf
+ "--accounts-conf"
+ ./accounts.conf
+ ];
+ };
+}