mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +00:00
Use custom texlive combination.
This commit is contained in:
parent
be1216e31d
commit
aec606e794
1 changed files with 22 additions and 1 deletions
|
@ -12,6 +12,27 @@ let
|
||||||
python-wp = pkgs.python310.withPackages (p: with p; [ setuptools pyaml requests latexify-py ]);
|
python-wp = pkgs.python310.withPackages (p: with p; [ setuptools pyaml requests latexify-py ]);
|
||||||
node-packages = with pkgs.nodePackages; [ bash-language-server ];
|
node-packages = with pkgs.nodePackages; [ bash-language-server ];
|
||||||
octave-wp = pkgs.octave.withPackages (p: with p; [ symbolic ]);
|
octave-wp = pkgs.octave.withPackages (p: with p; [ symbolic ]);
|
||||||
|
texliveset = pkgs.texlive.combine {
|
||||||
|
inherit (pkgs.texlive) scheme-basic
|
||||||
|
amscls
|
||||||
|
amsmath
|
||||||
|
biblatex-mla
|
||||||
|
block
|
||||||
|
cancel
|
||||||
|
capt-of
|
||||||
|
graphics
|
||||||
|
hanging
|
||||||
|
hyperref
|
||||||
|
latex
|
||||||
|
latexindent
|
||||||
|
latexmk
|
||||||
|
metafont
|
||||||
|
mlacls
|
||||||
|
psnfss
|
||||||
|
tools
|
||||||
|
ulem
|
||||||
|
wrapfig;
|
||||||
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
home.packages = with pkgs;
|
home.packages = with pkgs;
|
||||||
|
@ -56,7 +77,7 @@ in
|
||||||
spotifyd
|
spotifyd
|
||||||
sqlite
|
sqlite
|
||||||
texinfo
|
texinfo
|
||||||
texlive.combined.scheme-full
|
texliveset
|
||||||
tldr
|
tldr
|
||||||
units
|
units
|
||||||
unp
|
unp
|
||||||
|
|
Loading…
Add table
Reference in a new issue