nixos/pkgsets/latex.nix

11 lines
144 B
Nix
Raw Normal View History

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