nixos-config/shells/latex.nix

10 lines
231 B
Nix

# Ripperootskees for the disk space.
{ mkShell, texlive, texlab }:
mkShell {
packages = [
texlive.combined.scheme-full # RIP YOUR DISK SPACE!
texlab # Otherwise, here's a tool to easily write your (en)grave(ing).
];
}