Flake : Add Latex template.
This commit is contained in:
parent
4aa6bf3586
commit
c093d712f6
54
.config/linux/flake/template/Latex.nix
Normal file
54
.config/linux/flake/template/Latex.nix
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
{
|
||||||
|
description = "LuaLaTeX build env.";
|
||||||
|
|
||||||
|
inputs = {
|
||||||
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = { self, nixpkgs } @inputs:
|
||||||
|
let
|
||||||
|
system = "x86_64-linux";
|
||||||
|
lib = nixpkgs.lib;
|
||||||
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
|
tex = (pkgs.texlive.combine {
|
||||||
|
inherit (pkgs.texlive) scheme-basic
|
||||||
|
amsmath
|
||||||
|
babel
|
||||||
|
capt-of
|
||||||
|
catchfile
|
||||||
|
collection-fontsextra
|
||||||
|
cyrillic
|
||||||
|
dvipng
|
||||||
|
dvisvgm
|
||||||
|
environ
|
||||||
|
etoolbox
|
||||||
|
fancyhdr
|
||||||
|
fontspec
|
||||||
|
geometry
|
||||||
|
hyperref
|
||||||
|
luacode
|
||||||
|
luatexbase
|
||||||
|
montserrat
|
||||||
|
parskip
|
||||||
|
pgf
|
||||||
|
tcolorbox
|
||||||
|
tocloft
|
||||||
|
ulem
|
||||||
|
wrapfig
|
||||||
|
xcolor;
|
||||||
|
|
||||||
|
#(setq org-latex-compiler "lualatex")
|
||||||
|
#(setq org-preview-latex-default-process 'dvisvgm)
|
||||||
|
});
|
||||||
|
in {
|
||||||
|
devShells.${system} = {
|
||||||
|
default = pkgs.mkShell rec {
|
||||||
|
nativeBuildInputs = with pkgs; [
|
||||||
|
gnumake
|
||||||
|
tex
|
||||||
|
];
|
||||||
|
buildInputs = with pkgs; [];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -1 +0,0 @@
|
||||||
# TODO: Copy something from Android.nix
|
|
Reference in a new issue