Update laptop config

This commit is contained in:
2024-08-09 11:19:48 -05:00
parent 34902172ee
commit c94f6e3956
6 changed files with 40 additions and 25 deletions

View File

@@ -1,5 +1,6 @@
{ inputs, ...}:
{
gamescope = import ./gamescope-last-working.nix;
nose = import ./nose.nix;
llama-cpp = import ./llama-cpp.nix { inherit inputs; };
}

3
overlays/nose.nix Normal file
View File

@@ -0,0 +1,3 @@
_: prev: {
python312 = prev.python312.override { packageOverrides = _: pysuper: { nose = pysuper.pynose; }; };
}