nixos/pkgsets/latex.nix

13 lines
150 B
Nix
Raw Permalink Normal View History

2023-01-29 14:25:08 +01:00
{
2023-09-11 20:23:04 +02:00
config,
lib,
pkgs,
...
}:
with lib; {
2023-01-29 14:25:08 +01:00
config.machine.pkgsets.latex.pkgs = with pkgs; [
texlive.combined.scheme-full
texlab
];
}