Files
nix-config/modules/gpg.nix
2025-03-18 16:27:20 +01:00

14 lines
234 B
Nix

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