nixos-config/shells/latex.nix

13 lines
233 B
Nix
Raw Normal View History

# Ripperootskees for the disk 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
];
}