12 lines
150 B
Nix
12 lines
150 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib; {
|
|
config.machine.pkgsets.latex.pkgs = with pkgs; [
|
|
texlive.combined.scheme-full
|
|
texlab
|
|
];
|
|
}
|