From 07c2a4ac4983d0f40259ca0fc041bfcd4c0c83dd Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Fri, 26 Jan 2024 00:45:33 -0500 Subject: [PATCH] global/gpg: install gpgme This is needed for Thunderbird to use external GPG keys --- users/modules/global/gpg.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/users/modules/global/gpg.nix b/users/modules/global/gpg.nix index a338b45..f71f745 100644 --- a/users/modules/global/gpg.nix +++ b/users/modules/global/gpg.nix @@ -29,4 +29,8 @@ allow-loopback-pinentry ''; }; + + home.packages = with pkgs; [ + gpgme + ]; }