feature: add NSL lession 1

This commit is contained in:
2026-06-18 11:31:12 +02:00
parent c889e04ac6
commit 688f40feeb
7 changed files with 26574 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{ pkgs, lib, config, ... }:
{
languages.python = {
enable = true;
version = "3.14.4";
venv.enable = true;
venv.requirements = ''
ipython
jupyter
matplotlib
numpy
scikit-learn
'';
};
packages = [
pkgs.graphviz
pkgs.zsh
];
}