configuration.nix/modules/home/programs/gpg/default.nix
2023-12-23 15:48:20 +02:00

11 lines
171 B
Nix

{ pkgs, ... }: {
programs.gpg = {
enable = true;
};
services.gpg-agent = {
enable = true;
enableZshIntegration = true;
pinentryFlavor = "qt";
};
}