blob: ef67862cb6cbb34eca44d89f0f4df674976fdd61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{pkgs, ...}: {
home.packages = with pkgs; [
noweb
texliveFull
yalafi-shell
];
# 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";
}
|