gpp thingys

This commit is contained in:
2025-01-03 20:54:49 +01:00
parent f651438ca7
commit 4df333b4e1
5 changed files with 61 additions and 52 deletions

View File

@@ -1,6 +1,7 @@
{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkIf mkEnableOption;
@@ -13,6 +14,13 @@ in {
services.gpg-agent = {
enable = true;
enableSshSupport = true;
enableBashIntegration = true;
enableFishIntegration = true;
enableZshIntegration = true;
pinentryPackage = pkgs.pinentry-gnome3;
};
programs.gpg = {
enable = true;
};
};
}