diff options
-rw-r--r-- | tasks/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tasks/default.nix b/tasks/default.nix index 23be945..7de01e0 100644 --- a/tasks/default.nix +++ b/tasks/default.nix @@ -50,6 +50,15 @@ in { ]); }; + latex_shell = { + description = "Complete TeX Live shell environment"; + directory = "~/"; + type = "environment"; + environment = mkShellDerivation "latex-env" (with pkgs; [ + texlive.combined.scheme-full + ]); + }; + pymath_jupyter = { description = "Python for mathematics @ Jupyter Lab"; directory = "~/"; |