nix/overlays: add more python packages to qtile

_psutil_ is required with my current config, and the others are inserted
precautiously.
This commit is contained in:
steveej 2020-08-25 20:00:39 +02:00
parent 3ea248b397
commit 0f51376275

View file

@ -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
]);
});
}