diff options
-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 ]); }; |