dotfiles/modules/services/gpg.nix

12 lines
187 B
Nix
Raw Normal View History

2022-01-24 12:40:44 +01:00
{ config, lib, pkgs, ... }:
{
home-manager.users.moritz = {
services.gpg-agent = {
enable = true;
defaultCacheTtl = 3600;
};
};
services.pcscd.enable = true;
}