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:
parent
3ea248b397
commit
0f51376275
1 changed files with 12 additions and 1 deletions
|
@ -32,5 +32,16 @@ in {
|
||||||
# TODO: facetimehd is currfently broken (https://github.com/NixOS/nixpkgs/pull/72804)
|
# TODO: facetimehd is currfently broken (https://github.com/NixOS/nixpkgs/pull/72804)
|
||||||
facetimehd-firmware = super.hello;
|
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
|
||||||
|
]);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue