all repos — dotfiles @ dc88d47a1e196d96718ec748e157042d975722bd

my *nix dotfiles

nix/services/default.nix (view raw)

 1{ config
 2, pkgs
 3, ...
 4}:
 5
 6{
 7
 8  services = {
 9    gpg-agent = {
10      enable = true;
11      defaultCacheTtl = 60 * 60 * 24 * 7;
12      maxCacheTtl = 60 * 60 * 24 * 7;
13      pinentryFlavor = "qt";
14    };
15  };
16
17}