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

11 lines
177 B
Nix

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