config/systems/desktop/gpg.nix

10 lines
145 B
Nix
Raw Normal View History

2024-09-15 12:56:25 +01:00
{ pkgs, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = false;
pinentryPackage = pkgs.pinentry-gnome3;
};
}