From 0f5137627536126ffb1ec58572daaa231aff606e Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Tue, 25 Aug 2020 20:00:39 +0200 Subject: [PATCH] nix/overlays: add more python packages to qtile _psutil_ is required with my current config, and the others are inserted precautiously. --- nix/overlays/overrides.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/nix/overlays/overrides.nix b/nix/overlays/overrides.nix index ac0fcb2..92516fc 100644 --- a/nix/overlays/overrides.nix +++ b/nix/overlays/overrides.nix @@ -32,5 +32,16 @@ in { # TODO: facetimehd is currfently broken (https://github.com/NixOS/nixpkgs/pull/72804) facetimehd-firmware = super.hello; - qtile = self.nixpkgs-master.qtile; + qtile = self.nixpkgs-master.qtile.overrideAttrs(oldAttrs: { + pythonPath = oldAttrs.pythonPath ++ (with self.python37Packages; [ + psutil + dbus-python + pyxdg + mpd2 + # python-wifi + # iwlib + dateutil + keyring + ]); + }); }