From 3c68db65dc52432fe22e2395b7aeaf66caa4d1ff Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Wed, 27 Sep 2023 10:51:07 +0800 Subject: [PATCH] shells/latex: update inputs --- shells/latex.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/shells/latex.nix b/shells/latex.nix index a41c0331..988f69a1 100644 --- a/shells/latex.nix +++ b/shells/latex.nix @@ -1,8 +1,12 @@ # Ripperootskees for the space. -{ mkShell, texlive }: +{ mkShell +, texlive +, texlab +}: mkShell { packages = [ - texlive.combined.scheme-full + texlive.combined.scheme-full # RIP YOUR DISK SPACE! + texlab # Otherwise, here's a tool to easily write your (en)grave(ing). ]; }