Files
dotfiles/home-modules/latex.nix
Lennart J. Kurzweg (Nx2) 1387e5a081 ace ++
2024-05-07 16:56:30 +02:00

8 lines
207 B
Nix
Executable File

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