nixos/roles/latex.nix
Ivan Bushchik 86b8eed465
Add some comments, fix vetus and celerrime
Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
2023-08-23 09:38:48 +03:00

14 lines
380 B
Nix

{ config, pkgs, lib, ... }:
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
# I should find distribution I actually need
texlive.combined.scheme-full
];
};
}