feat(latex): add packages

This commit is contained in:
Michael Thomas 2024-01-30 20:54:24 -05:00
parent aec9bb1495
commit f0c01667df

View File

@ -1,5 +1,12 @@
{pkgs, ...}: { {pkgs, ...}: {
home.packages = [ programs.texlive = {
pkgs.texlive.combined.scheme-medium enable = true;
]; extraPackages = tpkgs: {
inherit
(tpkgs)
scheme-medium
csquotes
;
};
};
} }