oizys/modules/langs/tex.nix

14 lines
271 B
Nix
Raw Normal View History

2024-01-23 15:36:52 -06:00
{config, lib,pkgs,...}:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.languages.tex;
in
2024-01-23 11:51:13 -06:00
{
2024-01-23 15:36:52 -06:00
options.languages.tex.enable = mkEnableOption "tex";
config = mkIf cfg.enable {
2024-01-23 11:51:13 -06:00
environment.systemPackages = with pkgs; [
texlive.combined.scheme-full
];
2024-01-23 15:36:52 -06:00
};
2024-01-23 11:51:13 -06:00
}