commit 6534c78b599c981f88297d212dfea78fb4e8c987 Author: Guus van Meerveld Date: Tue Dec 12 16:37:45 2023 +0100 add latex template diff --git a/latex/shell.nix b/latex/shell.nix new file mode 100644 index 0000000..142d2ac --- /dev/null +++ b/latex/shell.nix @@ -0,0 +1,8 @@ +let + pkgs = import { }; +in +pkgs.mkShell { + buildInputs = with pkgs; [ + texlive.combined.scheme-full + ]; +}