Install pandoc and texlive
This commit is contained in:
parent
80aafa4093
commit
cb6311e50d
3 changed files with 23 additions and 0 deletions
3
home.nix
3
home.nix
|
@ -17,6 +17,9 @@
|
||||||
|
|
||||||
./programs/jq.nix
|
./programs/jq.nix
|
||||||
|
|
||||||
|
./programs/texlive.nix
|
||||||
|
./programs/pandoc.nix
|
||||||
|
|
||||||
./programs/podman.nix
|
./programs/podman.nix
|
||||||
|
|
||||||
./programs/scripts.nix
|
./programs/scripts.nix
|
||||||
|
|
9
programs/pandoc.nix
Normal file
9
programs/pandoc.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
programs.pandoc = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
defaults = {
|
||||||
|
pdf-engine = "pdflatex";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
11
programs/texlive.nix
Normal file
11
programs/texlive.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.texlive = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
extraPackages = tpkgs: {
|
||||||
|
inherit (tpkgs) scheme-small collection-fontsrecommended;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue