1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00
This commit is contained in:
Felix Stupp 2025-03-20 15:59:17 +07:00 committed by GitHub
commit aaa5310c3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,21 +14,55 @@ in {
options = {
programs.texlive = {
enable = mkEnableOption "TeX Live";
enable = mkEnableOption ''
TeX Live package customization.
This module allows you to select which `pkgs.texlivePackages.*` you want to install.
Start by editing {option}`programs.texlive.extraPackages`.
If one of the pre-built common environments already suits you
(e.g. `pkgs.texliveFull` or `pkgs.texliveMedium`),
you do not need to use this module.
'';
packageSet = mkOption {
default = pkgs.texlive;
defaultText = literalExpression "pkgs.texlive";
description = "TeX Live package set to use.";
defaultText = literalExpression ''
pkgs.texlive # corresponds to packages in pkgs.texlivePackages
'';
description = ''
TeX Live package set to use.
This is used in the option {option}`programs.texlive.extraPackages`.
Normally you do not want to change this from the default
except if you want to use texlive packages from a different nixpkgs release than your configs default.
'';
};
extraPackages = mkOption {
default = tpkgs: { inherit (tpkgs) collection-basic; };
defaultText = "tpkgs: { inherit (tpkgs) collection-basic; }";
example = literalExpression ''
tpkgs: { inherit (tpkgs) collection-fontsrecommended algorithms; }
tpkgs: with tpkgs; { # E.g. you can select from & combine
# pre-built environments (e.g. this equals pkgs.texliveSmall)
inherit scheme-small;
# collection of smaller packages (similar granularity to packages in Linux distros like Debian)
inherit collection-fontsrecommended;
# or individual tex packages (corresponds in general to packages from CTAN & co.).
inherit algorithms;
# You can mix them however you see fit (overlaps should be no problem)
inherit scheme-bookpub bibtex8 latexmk;
}
'';
description = ''
Extra packages which should be appended.
{option}`programs.texlive.packageSet` will be passed to this function.
In case you changed your `packageSet`,
you can find all available packages to select from
in nixpkgs under `pkgs.texlivePackages`,
search [here for them](https://search.nixos.org/packages?type=packages&query=texlivePackages.).
'';
description = "Extra packages available to TeX Live.";
};
package = mkOption {
@ -46,6 +80,7 @@ in {
+ " 'programs.texlive.extraPackages'.";
}];
# note: cfg.enable states that this modules only purpose is to customize the texlive environment
home.packages = [ cfg.package ];
programs.texlive.package = texlive.combine texlivePkgs;