1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-17 16:49:45 +01:00
home-manager/modules/programs/texlive.nix
Robert Helgesson 59dee6a501
texlive: add option programs.texlive.package
This read-only option will hold a reference to the customized texlive
package.

(cherry picked from commit 46a94cce56)
2018-03-14 17:44:58 +01:00

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);
};
}