feat(shell): install and setup gpg/gpg-agent.

This commit is contained in:
CronyAkatsuki 2025-06-08 15:50:15 +02:00
parent ddbe8756c4
commit 3f2568283a

View file

@ -116,5 +116,19 @@
# Install lazygit
programs.lazygit.enable = true;
# Install and setup gpg
programs.gpg = {
enable = true;
homedir = "${config.home.homeDirectory}/.local/share/gnupg";
};
services.gpg-agent = {
enable = true;
enableZshIntegration = true;
pinentry = {
package = pkgs.pinentry-gtk2;
program = "pinentry-gtk-2";
};
};
};
}