Skip to content

Commit e3ab708

Browse files
committed
latex: reduce footprint by replacing scheme-basic with scheme-minimal
Reduce installation size and build time by replacing the pkgs.texlive.scheme-basic package with pkgs.texlive.scheme-minimal. Keeping this dependency simplifies the integration implementation without significantly impacting install size, considering that most LaTeX projects already require the pkgs.texlive.scheme-minimal packages. Link: #513
1 parent e7823e0 commit e3ab708

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: modules/hooks.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ let
3434
[ "chktex" "lacheck" "latexindent" ]
3535
)
3636
)
37-
// { inherit (pkgs.texlive) scheme-basic; }
37+
// { inherit (pkgs.texlive) scheme-minimal; }
3838
);
3939
in
4040
{

0 commit comments

Comments
 (0)