aboutsummaryrefslogtreecommitdiff
path: root/services/default.nix
blob: 0e85cd90601f3c678594bb511176eaa7743e0ec8 (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 = 86400;
      maxCacheTtl = 86400;
      pinentryFlavor = "curses";
    };
  };

}