configuration.nix/modules/home/programs/gpg/default.nix

11 lines
171 B
Nix
Raw Normal View History

2023-12-01 17:59:45 +01:00
{ pkgs, ... }: {
programs.gpg = {
enable = true;
};
services.gpg-agent = {
enable = true;
enableZshIntegration = true;
2023-12-23 14:48:20 +01:00
pinentryFlavor = "qt";
2023-12-01 17:59:45 +01:00
};
}