1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 16:38:34 +02:00

texlive: "Texlive" -> "TeX Live"

This commit is contained in:
Dusk Banks 2021-05-29 22:42:56 -07:00 committed by Robert Helgesson
parent d3cdabb5c9
commit c12d53dd7c
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -13,7 +13,7 @@ in {
options = {
programs.texlive = {
enable = mkEnableOption "Texlive";
enable = mkEnableOption "TeX Live";
extraPackages = mkOption {
default = tpkgs: { inherit (tpkgs) collection-basic; };
@ -21,12 +21,12 @@ in {
example = literalExample ''
tpkgs: { inherit (tpkgs) collection-fontsrecommended algorithms; }
'';
description = "Extra packages available to Texlive.";
description = "Extra packages available to TeX Live.";
};
package = mkOption {
type = types.package;
description = "Resulting customized Texlive package.";
description = "Resulting customized TeX Live package.";
readOnly = true;
};
};