nixos-config/home/gpg.nix

8 lines
112 B
Nix

{ pkgs, ... }:
{
services.gpg-agent = {
enable = true;
pinentryPackage = pkgs.pinentry-qt;
};
}