1
0
Fork 0

Put latex into seperate package set.

This commit is contained in:
Kevin Baensch 2023-01-29 14:25:08 +01:00
parent e09c9c8d58
commit 2751ded3ed
Signed by: derped
GPG Key ID: C0F1D326C7626543
1 changed files with 10 additions and 0 deletions

10
pkgsets/latex.nix Normal file
View File

@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
with lib;
{
config.machine.pkgsets.latex.pkgs = with pkgs; [
texlive.combined.scheme-full
texlab
];
}