Simplified basic HM configurations

This commit is contained in:
Filippo Berto 2025-03-28 11:51:50 +01:00
parent d5fb5ba07b
commit 7a5148dc01
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
3 changed files with 15 additions and 10 deletions

View file

@ -1,4 +1,4 @@
{
{ pkgs, ... }: {
programs.gpg = {
enable = true;
settings = { };
@ -7,6 +7,10 @@
services.gpg-agent = {
enable = true;
defaultCacheTtl = 600;
enableBashIntegration = true;
enableZshIntegration = true;
enableNushellIntegration = true;
pinentryPackage = pkgs.pinentry-gnome3;
# extraConfig = "allow-loopback-pinentry";
};
}