nixos/home/gpg.nix
2024-06-09 23:52:27 +02: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;
};
}