nix-dots/user/modules/latex.nix

17 lines
245 B
Nix

{pkgs, ...}: {
programs.texlive = {
enable = true;
extraPackages = tpkgs: {
inherit
(tpkgs)
scheme-medium
csquotes
exam
pgfplots
hanging
stackengine
;
};
};
}