omniflake/home/tex.nix
2023-06-11 14:55:00 +02:00

34 lines
487 B
Nix

{ config, pkgs, ... }:
let
tex = (pkgs.texlive.combine {
inherit (pkgs.texlive)
scheme-medium
arydshln
bbding
csquotes
enotez
enumitem
environ
gensymb
lastpage
ly1
makecell
multirow
sourcesanspro
tabu
tcolorbox
threeparttable
threeparttablex
translations
was
wrapfig
xpatch
;
});
in
{ # home-manager
home.packages = with pkgs; [
tex
];
}