nix-config/modules/mixins/gnupg.nix

11 lines
161 B
Nix

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