nix/modules/apps/cli/tools/gpg/default.nix
2024-09-15 10:25:38 +02:00

9 lines
173 B
Nix

{pkgs, ...}: {
services.pcscd.enable = true;
programs.gnupg.agent = {
enable = true;
pinentryPackage = pkgs.pinentry-curses;
enableSSHSupport = true;
};
}