nix: make usage in non-flake setups easier (#296)

* nix: extract overlay into own file
* readme: document non-flake nixos usage
This commit is contained in:
Ruby Iris Juric
2025-08-19 08:41:49 +10:00
committed by GitHub
parent b5c6b4fa99
commit 20ef74cdac
3 changed files with 40 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
final: prev: {
copyparty = final.python3.pkgs.callPackage ./copyparty {
ffmpeg = final.ffmpeg-full;
};
python3 = prev.python3.override {
packageOverrides = pyFinal: pyPrev: {
partftpy = pyFinal.callPackage ./partftpy { };
};
};
}