diff --git a/shenvs/config.nix b/shenvs/config.nix index 3a0d196..d5c3569 100644 --- a/shenvs/config.nix +++ b/shenvs/config.nix @@ -1,7 +1,6 @@ shenvs: { gcKeep = with shenvs; [ c - jupyter mad octave tcrb diff --git a/shenvs/jupyter.nix b/shenvs/jupyter.nix deleted file mode 100644 index c7b91d1..0000000 --- a/shenvs/jupyter.nix +++ /dev/null @@ -1,30 +0,0 @@ -pkgs: { - paths = with pkgs; - let - python3 = python39.withPackages ( ps: with ps; [ - matplotlib - numpy - scipy - sympy - ]); - jupyterPath = jupyter-kernel.create { definitions = { - octave = octave-kernel.definition; - };}; - in - [ - (jupyter.override { - definitions = { - octave = let - withPackages = pkgs.octave.withPackages (ps: with ps; [ - symbolic - ]); - octave = withPackages.overrideAttrs (super: { inherit (pkgs.octave) version src; }); - kernel = octave-kernel.override { inherit octave; }; - in kernel.definition; - }; - inherit python3; - }) - gnuplot - ghostscript - ]; -}