summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-02-27 23:53:50 -0500
committerGitHub <noreply@github.com>2019-02-27 23:53:50 -0500
commit5dee926eb9f53b3e6990a528da30006fe2a6b931 (patch)
tree7d1a1242410a61186b311f51ae542ea0b5257783
parentfa5ab50753bb24981997e8534482307876c10c4e (diff)
downloadnixpkgs-5dee926eb9f53b3e6990a528da30006fe2a6b931.tar
nixpkgs-5dee926eb9f53b3e6990a528da30006fe2a6b931.tar.gz
nixpkgs-5dee926eb9f53b3e6990a528da30006fe2a6b931.tar.bz2
nixpkgs-5dee926eb9f53b3e6990a528da30006fe2a6b931.tar.lz
nixpkgs-5dee926eb9f53b3e6990a528da30006fe2a6b931.tar.xz
nixpkgs-5dee926eb9f53b3e6990a528da30006fe2a6b931.tar.zst
nixpkgs-5dee926eb9f53b3e6990a528da30006fe2a6b931.zip
nixos/no-x-libs.nix: override pinentry directly
This is more specific and we avoid having gtk or qt libraries come in at all.
-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 37e66c64542..9d202347702 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_ncurses;
+      pinentry = super.pinentry.override { gtk2 = null; qt = null; };
       gobject-introspection = super.gobject-introspection.override { x11Support = false; };
     }));
   };