omniflake/home/tex.nix
2023-05-17 01:31:01 +02:00

31 lines
440 B
Nix

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