summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--shenvs/config.nix1
-rw-r--r--shenvs/tex.nix7
2 files changed, 8 insertions, 0 deletions
diff --git a/shenvs/config.nix b/shenvs/config.nix
index 61f4c8d..ea699d3 100644
--- a/shenvs/config.nix
+++ b/shenvs/config.nix
@@ -5,5 +5,6 @@ shenvs: {
el3310
randall
tabas
+ tex
];
}
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;
+ })
+ ];
+}