nixos-config/shells/latex.nix

13 lines
228 B
Nix
Raw Normal View History

2022-12-12 02:16:35 +00:00
# Ripperootskees for the space.
2023-09-27 02:51:07 +00:00
{ mkShell
, texlive
, texlab
}:
2022-12-12 02:16:35 +00:00
mkShell {
packages = [
2023-09-27 02:51:07 +00:00
texlive.combined.scheme-full # RIP YOUR DISK SPACE!
texlab # Otherwise, here's a tool to easily write your (en)grave(ing).
2022-12-12 02:16:35 +00:00
];
}