diff options
| author | schererleander <leander@schererleander.de> | 2025-10-23 00:28:30 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-10-23 00:28:30 +0200 |
| commit | 19c7d0410c3fa06b5e11e5545b4927b7b1973477 (patch) | |
| tree | 86765418328b6cacbfe5c9a2346051c17de97391 /modules/home-manager/latex.nix | |
| parent | c7c06132e0270a8838fd11c13cf80a9744e11f7c (diff) | |
add more texlivepackages to extrapackages
Diffstat (limited to 'modules/home-manager/latex.nix')
| -rw-r--r-- | modules/home-manager/latex.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/home-manager/latex.nix b/modules/home-manager/latex.nix index 6595339..e479d78 100644 --- a/modules/home-manager/latex.nix +++ b/modules/home-manager/latex.nix @@ -10,7 +10,9 @@ config = lib.mkIf config.latex.enable { programs.texlive = { enable = true; - extraPackages = tpkgs: { inherit (tpkgs) collection-basic biblatex; }; + # See https://mynixos.com/search?q=texlivepackages.collection for more collections + # and https://mynixos.com/search?q=texlivepackages for more individual packages. + extraPackages = tpkgs: { inherit (tpkgs) collection-basic collection-latex collection-latexrecommended biblatex; }; }; home.packages = with pkgs; [ @@ -20,7 +22,7 @@ programs.pandoc = { enable = true; defaults = { - pdf-engine = "xelatex"; + pdf-engine = "pdfetex"; }; }; }; |
