This commit is contained in:
cnst
2024-07-31 18:17:39 +02:00
parent 0e8a1788d8
commit d0a57deacd
5 changed files with 92 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
{
nixpkgs = {
overlays = [
(_: prev: {
python312 = prev.python312.override {packageOverrides = _: pysuper: {nose = pysuper.pynose;};};
})
];
config = {
allowUnfree = true;
input-fonts.acceptLicense = true;
};
};
}