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

11 lines
178 B
Nix

{ pkgs, ... }:
{
programs.gpg.enable = true;
services.gpg-agent = {
enable = true;
enableFishIntegration = true;
pinentry.package = pkgs.pinentry-curses;
};
}