nixos-config/shells/latex.nix

10 lines
231 B
Nix
Raw Normal View History

# Ripperootskees for the disk space.
2025-01-29 04:48:19 +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
];
}