Files
dotfiles/home-modules/latex.nix
Lennart J. Kurzweg (Nx2) b4586e8661 chmod
2025-01-27 22:17:00 +01:00

9 lines
224 B
Nix

{ 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; })
];
}