should be good fr

This commit is contained in:
alsaiduq-lab 2025-03-30 04:16:36 -06:00
parent 7dc29b09c7
commit 62ad32fa11
2 changed files with 8 additions and 4 deletions

View file

@ -5,6 +5,12 @@
}: let
customPkgs = import ../pkgs {inherit pkgs lib;};
in {
imports = [
../modules/python.nix
];
python.enable = true;
environment.systemPackages = with pkgs; [
brave # TODO: make a module to save browser stuff
vesktop
@ -88,7 +94,6 @@ in {
nodePackages.pnpm
zlib.dev
udiskie
rust-analyzer
clang-tools
vscode-langservers-extracted

View file

@ -16,10 +16,8 @@
'';
pythonEnv = pkgs.python311.buildEnv.override {
extraLibs = with py; [
customPkgs.python-pymatting
customPkgs.python-opencv-headless
customPkgs.python-rembg
customPkgs.pythonPackages.numpy # should force the monkeypatch'd numpy
numpy
i3ipc
pandas
matplotlib
@ -49,6 +47,7 @@ in {
isort
uv
stdenv.cc.cc.lib
python311
];
environment.variables = {
PIP_PREFIX = "$HOME/.local";