🚀 add gpg

This commit is contained in:
Moritz Böhme 2022-01-24 12:40:44 +01:00
parent adbdf807a3
commit 5430db5431
4 changed files with 17 additions and 0 deletions

View file

@ -5,6 +5,7 @@
./agenix.nix
./diskstation
./dunst
./gpg.nix
./jupyter.nix
./kdeconnect.nix
./keyring.nix

11
modules/services/gpg.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
home-manager.users.moritz = {
services.gpg-agent = {
enable = true;
defaultCacheTtl = 3600;
};
};
services.pcscd.enable = true;
}