steveej-t14: keep using master's qtile
This commit is contained in:
parent
768ea36d85
commit
da8ac33ed2
4 changed files with 21 additions and 19 deletions
|
@ -4,9 +4,11 @@ self: super:
|
|||
|
||||
let
|
||||
nixpkgs-master = import <nixpkgs-master> { inherit (super) config; };
|
||||
nixpkgs-unstable = import <channels-nixos-unstable> { inherit (super) config; };
|
||||
|
||||
in {
|
||||
inherit nixpkgs-master;
|
||||
inherit nixpkgs-unstable;
|
||||
|
||||
# alacritty = nixpkgs-master.alacritty;
|
||||
alacritty = super.stdenv.mkDerivation {
|
||||
|
@ -32,28 +34,27 @@ in {
|
|||
# TODO: facetimehd is currfently broken (https://github.com/NixOS/nixpkgs/pull/72804)
|
||||
facetimehd-firmware = super.hello;
|
||||
|
||||
qtile = super.qtile.overrideAttrs(oldAttrs: {
|
||||
pythonPath = oldAttrs.pythonPath ++ (with self.python37Packages; [
|
||||
psutil
|
||||
dbus-python
|
||||
pyxdg
|
||||
mpd2
|
||||
# python-wifi
|
||||
# iwlib
|
||||
dateutil
|
||||
keyring
|
||||
]);
|
||||
});
|
||||
|
||||
# master is currently not compatible with the 21.05 channel
|
||||
# qtile = self.nixpkgs-master.qtile.overrideAttrs(oldAttrs: {
|
||||
# propagatedBuildInputs = oldAttrs.passthru.unwrapped.propagatedBuildInputs ++ (with self.python3Packages; [
|
||||
# qtile = super.qtile.overrideAttrs(oldAttrs: {
|
||||
# pythonPath = oldAttrs.pythonPath ++ (with self.python37Packages; [
|
||||
# psutil
|
||||
# dbus-python
|
||||
# pyxdg
|
||||
# mpd2
|
||||
# # python-wifi
|
||||
# # iwlib
|
||||
# dateutil
|
||||
# keyring
|
||||
# ]);
|
||||
# });
|
||||
|
||||
qtile = self.nixpkgs-unstable.qtile.overrideAttrs(oldAttrs: {
|
||||
propagatedBuildInputs = oldAttrs.passthru.unwrapped.propagatedBuildInputs ++ (with self.python3Packages; [
|
||||
# python-wifi
|
||||
# iwlib
|
||||
keyring
|
||||
]);
|
||||
});
|
||||
|
||||
btrbk = super.btrbk.overrideAttrs(attrs: rec {
|
||||
version = "0.30.0";
|
||||
src = builtins.fetchurl {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue