nvimConfig/overlays/python.nix
2026-01-30 14:22:39 +11:00

12 lines
177 B
Nix

{ ... }:
final: prev:
let
reqPkgs = pyPackages:
with pyPackages; [
numpy
];
in
{
basePythonPackages = reqPkgs;
python = prev.python3.withPackages reqPkgs;
}