nix/modules/apps/cli/tools/gpg/default.nix

9 lines
173 B
Nix
Raw Normal View History

2024-08-31 16:04:57 +02:00
{pkgs, ...}: {
services.pcscd.enable = true;
programs.gnupg.agent = {
enable = true;
pinentryPackage = pkgs.pinentry-curses;
enableSSHSupport = true;
};
}