1
0
Fork 0

Restore gpg-agent config

This commit is contained in:
Malte Brandy 2020-06-02 01:58:24 +02:00
parent 8c5d52c351
commit 29e92789b5
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9

View file

@ -12,7 +12,6 @@ in {
./mpclient.nix
./neovim
];
services.gpg-agent.enable = true;
nixpkgs.overlays = import ../overlays.nix { inherit lib; };
programs = {
@ -149,5 +148,13 @@ in {
systemd.user = { startServices = true; };
services = {
gpg-agent = {
enable = true;
defaultCacheTtl = 31536000; # 1year
maxCacheTtl = 31536000; # 1year
};
};
xdg.enable = true;
}