Files
nixos-config/home/common/programs/gpg.nix
T
Miguel Palhas a2b4d0f479 deadnix
2026-06-27 14:17:02 +01:00

25 lines
428 B
Nix

{
pkgs,
...
}:
{
programs.gpg = {
enable = true;
};
home.packages = with pkgs; [ pinentry-gnome3 ];
services.gpg-agent = {
enable = true;
pinentry.package = pkgs.pinentry-gnome3;
# Use gpg-agent as the ssh-agent so AddKeysToAgent ("yes") in ssh.nix
# has an agent to load keys into.
enableSshSupport = true;
};
programs.password-store = {
enable = true;
settings = { };
};
}