aboutsummaryrefslogtreecommitdiff
path: root/services/default.nix
blob: 83955bf2104d4cb13833b53f1556496eb8647c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ config
, pkgs
, theme
, ...
}:

{

  imports = [
    ./dunst.nix
    ./picom.nix
    ./redshift.nix
    ./sxhkd.nix
    ./mbsync.nix
  ];

  services = {
    lorri.enable = true;
    gpg-agent = {
      enable = true;
      defaultCacheTtl = 60 * 60 * 24 * 7;
      maxCacheTtl = 60 * 60 * 24 * 7;
      pinentryFlavor = "curses";
    };
  };

}