Files
nixos-config/home/common/programs/gpg.nix
T
Miguel Palhas 559edbe89a various fixes
2026-06-27 11:21:45 +01:00

28 lines
455 B
Nix

{
inputs,
pkgs,
config,
lib,
...
}:
{
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 = { };
};
}