omniflake/home/tex.nix
2023-07-28 22:58:08 +02:00

41 lines
586 B
Nix

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