Files
dotfiles/home-modules/latex.nix
Lennart J. Kurzweg (Nx2) 4ed036b5d0 more refactoring
2026-01-13 15:06:37 +01:00

7 lines
192 B
Nix

{ pkgs, ... }@all: with all; {
home.packages = with pkgs; [
texlab # LSP
(texlive.combine { inherit (texlive) scheme-full xifthen ifmtarg framed paralist titlesec xcolor; })
];
}