some modularizing and refactoring

This commit is contained in:
cnst
2024-10-24 18:49:49 +02:00
parent 7f9d5c000f
commit ca0dc208e0
25 changed files with 248 additions and 227 deletions

13
nix/nixpkgs/default.nix Normal file
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;
};
};
}