Files
nix-config/modules/gpg.nix
2023-11-22 12:12:11 +01:00

14 lines
230 B
Nix

{pkgs, ...}:
{
#services.pcscd.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "qt";
};
#environment.systemPackages = with pkgs; [
# pinentry-curses
# ];
}