Files

11 lines
211 B
Nix
Raw Permalink Normal View History

2025-08-20 18:24:02 +03:00
{ pkgs, ... }: {
hm.programs.gpg.enable = true;
hm.services.gpg-agent = {
enable = true;
enableSshSupport = false;
pinentry.package = pkgs.pinentry-tty;
enableFishIntegration = true;
};
}