64 lines
916 B
Nix
64 lines
916 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
tex = (pkgs.texlive.combine {
|
|
inherit (pkgs.texlive)
|
|
adjustbox
|
|
arydshln
|
|
bbding
|
|
blindtext
|
|
changepage
|
|
csquotes
|
|
dashrule
|
|
enotez
|
|
enumitem
|
|
environ
|
|
footmisc
|
|
framed
|
|
gensymb
|
|
graphbox
|
|
hanging
|
|
idxlayout
|
|
ifmtarg
|
|
imakeidx
|
|
lastpage
|
|
lipsum
|
|
ltablex
|
|
ly1
|
|
makecell
|
|
multirow
|
|
needspace
|
|
nowidow
|
|
pdfcol
|
|
pdfpages
|
|
pgf
|
|
scheme-medium
|
|
sourcesanspro
|
|
stringstrings
|
|
svg
|
|
tabu
|
|
tabulary
|
|
tcolorbox
|
|
threeparttable
|
|
threeparttablex
|
|
tikzfill
|
|
titlesec
|
|
titling
|
|
tocloft
|
|
translations
|
|
transparent
|
|
was
|
|
wrapfig
|
|
xpatch
|
|
xstring
|
|
xtab
|
|
xurl
|
|
zref
|
|
;
|
|
});
|
|
in
|
|
{ # home-manager
|
|
home.packages = with pkgs; [
|
|
tex
|
|
];
|
|
}
|