From c12d53dd7cdcc5de9b7a41b31c3edf80fc1f2fc8 Mon Sep 17 00:00:00 2001 From: Dusk Banks Date: Sat, 29 May 2021 22:42:56 -0700 Subject: [PATCH] texlive: "Texlive" -> "TeX Live" --- modules/programs/texlive.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/programs/texlive.nix b/modules/programs/texlive.nix index 08a376d65..a49f4bf68 100644 --- a/modules/programs/texlive.nix +++ b/modules/programs/texlive.nix @@ -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; }; };