flake: use qtile overlay

This commit is contained in:
Infinidoge 2025-01-13 10:31:25 -05:00
parent 0da3335239
commit a914be9bca
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A
3 changed files with 26 additions and 17 deletions

View file

@ -59,28 +59,11 @@ in
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
(pythonFinal: pythonPrev: {
inherit (final) jupyterlab-vim jupyterlab-myst;
qtile = pythonPrev.qtile.overrideAttrs (oldAttrs: {
version = "0.0.0+unstable-2024-11-28";
src = oldAttrs.src.override {
rev = "4897d0d15d4403de00d19c570d60178541c7c582";
hash = "sha256-k0kxvPUOEb6/1HnihRhPcULO+AI8PPvtX3SBt3EImI8=";
};
});
qtile-extras = pythonPrev.qtile-extras.overridePythonAttrs {
doCheck = false;
};
# https://github.com/NixOS/nixpkgs/pull/356680/
term-image = pythonPrev.term-image.overridePythonAttrs {
pythonRelaxDeps = [ "pillow" ];
};
})
];
qtile = prev.qtile.overrideAttrs {
version = final.python3Packages.qtile.version;
};
python-grip = fork.python3Packages.grip;
}