summaryrefslogtreecommitdiff
path: root/wrappers/aerc/default.nix
blob: fe5f4909d530880aace0929358e7df91a0086470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  pkgs,
  lib,
  ...
}: {
  wrappers.aerc = {
    basePackage = pkgs.aerc;
    flags = [
      "--aerc-conf"
      ./aerc.conf
      "--accounts-conf"
      ./accounts.conf
    ];
  };
}