all repos — dotfiles @ ce1c2f28bb389820ff172845a75148c1fca8e0ab

my *nix dotfiles

nix/services/default.nix (view raw)

 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
{ config
, pkgs
, theme
, ...
}:

{

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

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

}