Set up latex.

This commit is contained in:
Tom Alexander
2025-01-14 18:04:04 -05:00
parent d338b77d23
commit 63408f5664
3 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
{
config,
lib,
pkgs,
...
}:
let
tex = (
pkgs.texlive.combine {
inherit (pkgs.texlive)
scheme-basic
dvisvgm
dvipng # for preview and export as html in org-mode
wrapfig
amsmath
ulem
hyperref
capt-of
;
}
);
in
{
imports = [ ];
environment.systemPackages = with pkgs; [
tex
];
}