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

12 lines
221 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;
2024-04-02 10:15:02 +02:00
enableNushellIntegration = true;
pinentryPackage = pkgs.pinentry-qt;
2023-12-01 17:59:45 +01:00
};
}