blob: 8ad15fb0bd89fca6d2d9679fa03fe7a5131d10e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
config,
pkgs,
lib,
...
}:
{
options.latex.enable = lib.mkEnableOption "Setup latex";
config = lib.mkIf config.latex.enable {
programs.texlive = {
enable = true;
extraPackages = tpkgs: with tpkgs; [
amsmath
amsfonts
amsthm
geometry
graphicx
xcolor
hyperref
biblatex
fontspec
microtype
tikz
pgfplots
];
};
home.packages = with pkgs; [
biber
];
programs.pandoc = {
enable = true;
defaults = {
pdf-engine = "xelatex";
};
};
};
}
|