1
0
Fork 0
nixos-config/home-manager/latex.nix
2018-05-29 20:09:27 +02:00

21 lines
359 B
Nix

{ pkgs, ... }:
{
programs = {
texlive = {
enable = true;
extraPackages = tpkgs: {inherit (tpkgs)
scheme-small
latexmk
collection-latexextra
collection-bibtexextra
collection-luatex
# collection-math
collection-fontsextra;
};
};
};
home.packages = [
pkgs.biber
];
}