feature(deven): add devenv for ml exercises

This commit is contained in:
2026-04-28 16:15:16 +02:00
parent 8036891806
commit 1c8c4e5142
4 changed files with 1376 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
{ pkgs, lib, config, ... }:
{
languages.python = {
enable = true;
venv.enable = true;
venv.requirements = ''
ipython
jupyter
matplotlib
numpy
scikit-learn
'';
};
packages = [
pkgs.graphviz
pkgs.zsh
];
}