Files
nix-config/modules/gpg.nix
2025-12-13 12:48:08 +01:00

14 lines
235 B
Nix

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