nixos-config/shared/gpg.nix

13 lines
204 B
Nix
Raw Normal View History

2023-04-06 22:31:45 +02:00
{ ... }:
2022-12-29 20:48:40 +01:00
{
2023-07-20 21:35:12 +02:00
programs.gnupg = {
dirmngr.enable = true;
agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "gnome3";
};
2022-12-29 20:48:40 +01:00
};
services.pcscd.enable = true;
}