initial jupyenv setup

This commit is contained in:
Clara Dautermann 2025-04-08 07:45:24 +02:00
commit f2400c541a
Signed by: clara
GPG key ID: 223391B52FAD4463
5 changed files with 694 additions and 0 deletions

6
kernels.nix Normal file
View file

@ -0,0 +1,6 @@
{ pkgs, ... }: {
kernel.python.minimal = {
enable = true;
extraPackages = ps: [ ps.requests ps.beautifulsoup4 ];
};
}