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