Files
nixos-configuration/shared/base/home-manager/gpg.nix

11 lines
178 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
2025-04-15 23:15:32 +02:00
programs.gpg.enable = true;
services.gpg-agent = {
enable = true;
enableFishIntegration = true;
pinentry.package = pkgs.pinentry-curses;
};
}