about summary refs log tree commit diff
path: root/nixos
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 /nixos
parentb40550232f1aec34de71b45d6562e6f73e6f6368 (diff)
downloadnixlib-9235a8eaeff094c8e014b669c2e447b6e161e815.tar
nixlib-9235a8eaeff094c8e014b669c2e447b6e161e815.tar.gz
nixlib-9235a8eaeff094c8e014b669c2e447b6e161e815.tar.bz2
nixlib-9235a8eaeff094c8e014b669c2e447b6e161e815.tar.lz
nixlib-9235a8eaeff094c8e014b669c2e447b6e161e815.tar.xz
nixlib-9235a8eaeff094c8e014b669c2e447b6e161e815.tar.zst
nixlib-9235a8eaeff094c8e014b669c2e447b6e161e815.zip
nixos/config/no-x-libs: Fix pinentry arguments
Diffstat (limited to 'nixos')
-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 aad02a9ca4e3..74cf74d74181 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; };
     }));
   };