nixos-config/shared/gpg.nix

10 lines
164 B
Nix
Raw Normal View History

2022-12-29 20:48:40 +01:00
{ config, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
2023-01-20 23:38:35 +01:00
pinentryFlavor = "gnome3";
2022-12-29 20:48:40 +01:00
};
services.pcscd.enable = true;
}