This commit is contained in:
2025-04-06 20:27:52 -04:00
parent e25891255a
commit 71528ed396
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
pinentry-gtk2
];
programs = {
gpg = {
enable = true;
};
};
services = {
gpg-agent = {
enable = true;
pinentryPackage = pkgs.pinentry-gtk2;
};
};
}