Files
dotfiles/home-modules/latex.nix
2025-05-27 07:15:44 +00:00

9 lines
223 B
Nix

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