nixos/roles/latex.nix

15 lines
402 B
Nix
Raw Permalink Normal View History

{ config, pkgs, lib, ... }:
2023-07-28 17:41:32 +03:00
let cfg = config.my.roles.latex;
in {
options.my.roles.latex.enable = lib.mkEnableOption "Enable latex stuff";
config = lib.mkIf (cfg.enable) {
environment.systemPackages = with pkgs;
[
# Maybe I don't need to use -full variant of texlive
# TODO: I should find distribution I actually need
texlive.combined.scheme-full
];
};
}