nixos/home/gpg.nix
2025-02-27 02:16:57 +01:00

11 lines
191 B
Nix

{pkgs, ...}: {
programs.gpg = {
enable = true;
settings.trust-model = "tofu+pgp";
};
services.gpg-agent = {
enable = true;
pinentryPackage = pkgs.pinentry-gtk2;
};
}