mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-30 22:57:55 +00:00
13 lines
233 B
Nix
13 lines
233 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).
|
|
];
|
|
}
|