1
0
Fork 0
nixos-config/home-manager/latex.nix

21 lines
359 B
Nix
Raw Normal View History

2018-03-03 00:50:36 +00:00
{ pkgs, ... }:
{
programs = {
texlive = {
enable = true;
extraPackages = tpkgs: {inherit (tpkgs)
scheme-small
latexmk
collection-latexextra
collection-bibtexextra
collection-luatex
2018-04-02 15:52:16 +00:00
# collection-math
2018-03-03 00:50:36 +00:00
collection-fontsextra;
};
};
};
home.packages = [
2018-04-02 15:52:16 +00:00
pkgs.biber
2018-03-03 00:50:36 +00:00
];
}