non important commit

This commit is contained in:
maxstrb 2025-09-27 19:17:10 +02:00
parent 716ba60050
commit 8c16459147
2 changed files with 12 additions and 1 deletions

View file

@ -44,6 +44,15 @@
];
};
python = pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (python-pkgs: [
python-pkgs.numpy
python-pkgs.pandas
]))
];
};
rice = pkgs.mkShell {
buildInputs = with pkgs; [
cmatrix

View file

@ -68,13 +68,15 @@
css.enable = true;
html.enable = true;
python.enable = true;
sql.enable = true;
ts.enable = true;
zig.enable = true;
csharp.enable = true;
rust = {
enable = true;
crates.enable = false; #null-ls was making me angry
crates.enable = false;
};
};