1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-06 17:11:03 +01:00
home-manager/modules/programs/texlive.nix
Austin Horstman 0b491b460f
treewide: remove with lib (#6735)
Continuation of `with lib;` cleanup.
2025-03-31 22:32:16 -05:00

51 lines
1.3 KiB
Nix

{ config, lib, pkgs, ... }:
let
inherit (lib) mkOption types;
cfg = config.programs.texlive;
texlive = cfg.packageSet;
texlivePkgs = cfg.extraPackages texlive;
in {
meta.maintainers = [ lib.maintainers.rycee ];
options = {
programs.texlive = {
enable = lib.mkEnableOption "TeX Live";
packageSet = mkOption {
default = pkgs.texlive;
defaultText = lib.literalExpression "pkgs.texlive";
description = "TeX Live package set to use.";
};
extraPackages = mkOption {
default = tpkgs: { inherit (tpkgs) collection-basic; };
defaultText = "tpkgs: { inherit (tpkgs) collection-basic; }";
example = lib.literalExpression ''
tpkgs: { inherit (tpkgs) collection-fontsrecommended algorithms; }
'';
description = "Extra packages available to TeX Live.";
};
package = mkOption {
type = types.package;
description = "Resulting customized TeX Live package.";
readOnly = true;
};
};
};
config = lib.mkIf cfg.enable {
assertions = [{
assertion = texlivePkgs != { };
message = "Must provide at least one extra package in"
+ " 'programs.texlive.extraPackages'.";
}];
home.packages = [ cfg.package ];
programs.texlive.package = texlive.combine texlivePkgs;
};
}