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