Files
dotfiles/home-modules/latex.nix
Lennart J. Kurzweg (Nx2) e07e98120a latex lsp
2024-06-29 21:57:55 +02:00

9 lines
224 B
Nix
Executable File

{ config, pkgs, lib, host, ... }:
lib.mkIf (host != "NxACE")
{
home.packages = with pkgs; [
texlab # LSP
(texlive.combine { inherit (texlive) scheme-full xifthen ifmtarg framed paralist titlesec xcolor; })
];
}