summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Tuegel <thomas.tuegel@runtimeverification.com>2019-07-24 15:22:07 -0500
committerThomas Tuegel <thomas.tuegel@runtimeverification.com>2019-07-24 15:22:07 -0500
commit9235a8eaeff094c8e014b669c2e447b6e161e815 (patch)
tree3693b86f9ebb823fd23b3add667747c3d8171caf
parentb40550232f1aec34de71b45d6562e6f73e6f6368 (diff)
downloadnixpkgs-9235a8eaeff094c8e014b669c2e447b6e161e815.tar
nixpkgs-9235a8eaeff094c8e014b669c2e447b6e161e815.tar.gz
nixpkgs-9235a8eaeff094c8e014b669c2e447b6e161e815.tar.bz2
nixpkgs-9235a8eaeff094c8e014b669c2e447b6e161e815.tar.lz
nixpkgs-9235a8eaeff094c8e014b669c2e447b6e161e815.tar.xz
nixpkgs-9235a8eaeff094c8e014b669c2e447b6e161e815.tar.zst
nixpkgs-9235a8eaeff094c8e014b669c2e447b6e161e815.zip
nixos/config/no-x-libs: Fix pinentry arguments
-rw-r--r--nixos/modules/config/no-x-libs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/config/no-x-libs.nix b/nixos/modules/config/no-x-libs.nix
index aad02a9ca4e..74cf74d7418 100644
--- a/nixos/modules/config/no-x-libs.nix
+++ b/nixos/modules/config/no-x-libs.nix
@@ -34,7 +34,7 @@ with lib;
       networkmanager-openvpn = super.networkmanager-openvpn.override { withGnome = false; };
       networkmanager-vpnc = super.networkmanager-vpnc.override { withGnome = false; };
       networkmanager-iodine = super.networkmanager-iodine.override { withGnome = false; };
-      pinentry = super.pinentry.override { gtk2 = null; gcr = null; qt = null; };
+      pinentry = super.pinentry.override { gtk2 = null; gcr = null; qt4 = null; qt5 = null; };
       gobject-introspection = super.gobject-introspection.override { x11Support = false; };
     }));
   };