mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
46a94cce56
This read-only option will hold a reference to the customized texlive package.
39 lines
801 B
Nix
39 lines
801 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.texlive;
|
|
|
|
in
|
|
|
|
{
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
options = {
|
|
programs.texlive = {
|
|
enable = mkEnableOption "Texlive";
|
|
|
|
extraPackages = mkOption {
|
|
default = self: {};
|
|
example = literalExample ''
|
|
tpkgs: { inherit (tpkgs) collection-fontsrecommended algorithms; }
|
|
'';
|
|
description = "Extra packages available to Texlive.";
|
|
};
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
description = "Resulting customized Texlive package.";
|
|
readOnly = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [ cfg.package ];
|
|
programs.texlive.package =
|
|
pkgs.texlive.combine (cfg.extraPackages pkgs.texlive);
|
|
};
|
|
}
|