From a3f41bcd1abc872c32514fdf24f381ef5748252e Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Fri, 11 Oct 2024 16:27:01 +0200 Subject: [PATCH] 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. --- modules/hooks.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hooks.nix b/modules/hooks.nix index 62b2e4b5..bb13e80d 100644 --- a/modules/hooks.nix +++ b/modules/hooks.nix @@ -34,7 +34,7 @@ let [ "chktex" "lacheck" "latexindent" ] ) ) - // { inherit (pkgs.texlive) scheme-basic; } + // { inherit (pkgs.texlive) scheme-minimal; } ); in {