summaryrefslogtreecommitdiff
path: root/shenvs/tex.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-03-25 08:09:19 -0600
committerAlejandro Soto <alejandro@34project.org>2022-03-25 08:09:19 -0600
commit16dea7814caa2073775c1715b5dc9dca6f8bbe99 (patch)
tree6823103002bfbd1a1d27c8a3b2852c00e3d24cc5 /shenvs/tex.nix
parent60186db09ce8859d0642f749a270b8daf466cde8 (diff)
shenvs: add tex
Diffstat (limited to 'shenvs/tex.nix')
-rw-r--r--shenvs/tex.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/shenvs/tex.nix b/shenvs/tex.nix
new file mode 100644
index 0000000..4bd4b52
--- /dev/null
+++ b/shenvs/tex.nix
@@ -0,0 +1,7 @@
+pkgs: {
+ paths = with pkgs; [
+ (texlive.combine {
+ inherit (texlive) scheme-medium csquotes enumitem;
+ })
+ ];
+}