nix-config/modules/mixins/gnupg.nix

12 lines
161 B
Nix
Raw Normal View History

2025-02-24 10:08:21 +00:00
{ pkgs, ... }:
{
programs = {
2025-02-24 10:08:21 +00:00
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt;
};
};
}