omniflake/home/tex.nix
2023-06-15 23:21:14 +02:00

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
];
}