diff options
author | Adrian Kummerlaender | 2021-11-12 10:27:06 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2021-11-12 10:27:06 +0100 |
commit | c0d21808e28943fa90d57b6d6c9773962b406b16 (patch) | |
tree | 42edbbb53e9aa4b3c73fb5173380dc360bac86e1 /tasks | |
parent | 66f883b75c6a30e6078d8216f31beea6ffd1eb8b (diff) | |
download | nixos_home-c0d21808e28943fa90d57b6d6c9773962b406b16.tar nixos_home-c0d21808e28943fa90d57b6d6c9773962b406b16.tar.gz nixos_home-c0d21808e28943fa90d57b6d6c9773962b406b16.tar.bz2 nixos_home-c0d21808e28943fa90d57b6d6c9773962b406b16.tar.lz nixos_home-c0d21808e28943fa90d57b6d6c9773962b406b16.tar.xz nixos_home-c0d21808e28943fa90d57b6d6c9773962b406b16.tar.zst nixos_home-c0d21808e28943fa90d57b6d6c9773962b406b16.zip |
Update jupyterlab environments
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/default.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tasks/default.nix b/tasks/default.nix index 2d76551..15f2a1d 100644 --- a/tasks/default.nix +++ b/tasks/default.nix @@ -45,12 +45,22 @@ in { ]); }; + java_shell = { + description = "Generic Java shell environment"; + directory = "~/"; + type = "environment"; + environment = mkShellDerivation "java-env" (with pkgs; [ + gnumake + openjdk + ]); + }; + latex_shell = { description = "Generic LaTeX shell environment"; directory = "~/"; type = "environment"; environment = mkShellDerivation "latex-env" (with pkgs; [ - tectonic + texlive.combined.scheme-full ]); }; |