From e9e7886ff0981afe5ebe21540770b4a8ca9cfdde Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 12 Jun 2020 17:51:15 -0700 Subject: [PATCH] nixos/gnupg: add pinentry to systemPackages --- nixos/modules/programs/gnupg.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/programs/gnupg.nix b/nixos/modules/programs/gnupg.nix index 7a3cb588ee719..62f9847dbc634 100644 --- a/nixos/modules/programs/gnupg.nix +++ b/nixos/modules/programs/gnupg.nix @@ -123,7 +123,7 @@ in services.dbus.packages = mkIf (cfg.agent.pinentryFlavor == "gnome3") [ pkgs.gcr ]; - environment.systemPackages = with pkgs; [ cfg.package ]; + environment.systemPackages = with pkgs; [ cfg.package pinentry.${cfg.agent.pinentryFlavor} ]; systemd.packages = [ cfg.package ]; environment.interactiveShellInit = ''