blob: 547efe72fa5b1eaf4793166ad63bdac1c3126c05 (
plain)
1
2
3
4
5
6
7
8
|
{pkgs, ...}: {
home.packages = with pkgs; [noweb texlive.combined.scheme-small];
# Prepend nowebs STY files to the search path. I chose to do it globally,
# rather than using `makeWrapper` because I sometimes want to manually invoke
# `pdflatex` and the like on the output of `noweave`.
home.sessionVariables.TEXINPUTS = "${pkgs.noweb.tex}/tex/latex/noweb/:$TEXINPUTS";
}
|