mirror of
https://github.com/nix-community/home-manager
synced 2025-01-08 10:09:49 +01:00
texlive: "Texlive" -> "TeX Live"
(cherry picked from commit c12d53dd7c
)
This commit is contained in:
parent
b8edffb918
commit
0ff5951285
1 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@ in {
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
programs.texlive = {
|
programs.texlive = {
|
||||||
enable = mkEnableOption "Texlive";
|
enable = mkEnableOption "TeX Live";
|
||||||
|
|
||||||
extraPackages = mkOption {
|
extraPackages = mkOption {
|
||||||
default = tpkgs: { inherit (tpkgs) collection-basic; };
|
default = tpkgs: { inherit (tpkgs) collection-basic; };
|
||||||
|
@ -21,12 +21,12 @@ in {
|
||||||
example = literalExample ''
|
example = literalExample ''
|
||||||
tpkgs: { inherit (tpkgs) collection-fontsrecommended algorithms; }
|
tpkgs: { inherit (tpkgs) collection-fontsrecommended algorithms; }
|
||||||
'';
|
'';
|
||||||
description = "Extra packages available to Texlive.";
|
description = "Extra packages available to TeX Live.";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
type = types.package;
|
type = types.package;
|
||||||
description = "Resulting customized Texlive package.";
|
description = "Resulting customized TeX Live package.";
|
||||||
readOnly = true;
|
readOnly = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue