From 5b13a57a255c4b541a25f3b2ea1a460e9e68eaeb Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sat, 2 Mar 2019 20:52:28 +0100 Subject: Add generic LaTeX shell to Tasker --- tasks/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tasks/default.nix b/tasks/default.nix index 3af769f..6b891dd 100644 --- a/tasks/default.nix +++ b/tasks/default.nix @@ -51,5 +51,18 @@ in { gdb cgdb ]); }; + + latex_shell = { + description = "Generic LaTeX shell environment"; + directory = "~/"; + type = "environment"; + environment = with pkgs; let + texlive-custom = texlive.combine { + inherit (texlive) scheme-small collection-langgerman latexmk amsmath enumitem; + }; + in mkShellDerivation "latex-env" [ + texlive-custom + ]; + }; }; } -- cgit v1.2.3