diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-03-25 08:09:19 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-03-25 08:09:19 -0600 |
| commit | 16dea7814caa2073775c1715b5dc9dca6f8bbe99 (patch) | |
| tree | 6823103002bfbd1a1d27c8a3b2852c00e3d24cc5 | |
| parent | 60186db09ce8859d0642f749a270b8daf466cde8 (diff) | |
shenvs: add tex
Diffstat (limited to '')
| -rw-r--r-- | shenvs/config.nix | 1 | ||||
| -rw-r--r-- | shenvs/tex.nix | 7 |
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; + }) + ]; +} |
