init wrapper-module config

This commit is contained in:
Daniel Winkler 2026-01-30 14:22:39 +11:00
commit 91755583fd
46 changed files with 4277 additions and 0 deletions

12
overlays/python.nix Normal file
View file

@ -0,0 +1,12 @@
{ ... }:
final: prev:
let
reqPkgs = pyPackages:
with pyPackages; [
numpy
];
in
{
basePythonPackages = reqPkgs;
python = prev.python3.withPackages reqPkgs;
}