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