Files
dotfiles/home-modules/latex.nix
Lennart J. Kurzweg (Nx2) 03904fea6a latex
2024-04-30 16:34:17 +02:00

9 lines
189 B
Nix

{ config, pkgs, ... }:
let
in
{ # home-manager
home.packages = with pkgs; [
(texlive.combine { inherit (texlive) scheme-full xifthen ifmtarg framed paralist titlesec xcolor; })
];
}