nixos/profiles/latex/default.nix

25 lines
352 B
Nix
Raw Normal View History

2024-07-28 21:08:02 +02:00
{
config,
lib,
pkgs,
...
}:
2023-02-13 21:24:21 +01:00
let
cfg = config.my.profiles.latex;
in
{
options.my.profiles.latex = with lib; {
enable = mkEnableOption "latex profile";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
biber
pdfpc
qtikz
texlive.combined.scheme-full
texstudio
];
};
}