mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
latex: separated into new file
This commit is contained in:
@@ -32,6 +32,7 @@
|
||||
../../modules/nixos/documentation.nix
|
||||
../../modules/nixos/IO.nix
|
||||
../../modules/fonts.nix
|
||||
../../modules/latex.nix
|
||||
];
|
||||
|
||||
|
||||
@@ -157,10 +158,8 @@
|
||||
glfw # raylib and some dependecies
|
||||
cling # c interpreter used for coding
|
||||
# lsp
|
||||
texlab
|
||||
clang-tools
|
||||
python311Packages.python-lsp-server
|
||||
lua-language-server
|
||||
ltex-ls-plus
|
||||
pylint
|
||||
black
|
||||
|
||||
@@ -88,44 +88,6 @@
|
||||
(pkgs.callPackage ../../hostsModules/laptop/qt/qtbatticon.nix {})
|
||||
#pkgs
|
||||
pkgs.gruvbox-gtk-theme
|
||||
pkgs.biber
|
||||
(pkgs.texliveMedium.withPackages (
|
||||
ps:
|
||||
with ps; [
|
||||
# these few pkgs are used in the CV template
|
||||
titlesec # allows creating custom \section
|
||||
marvosym # some symboles
|
||||
ebgaramond # Use the EB Garamond font
|
||||
microtype # To enable letterspacing
|
||||
fontaxes
|
||||
# these few pkgs were used for my TM
|
||||
svg
|
||||
catchfile
|
||||
caption
|
||||
transparent
|
||||
cfr-lm
|
||||
svn-prov
|
||||
nfssext-cfr
|
||||
hyphenat
|
||||
csquotes
|
||||
enumitem
|
||||
chngcntr
|
||||
tcolorbox
|
||||
pdfcol
|
||||
wrapfig
|
||||
tocloft
|
||||
lastpage
|
||||
biblatex
|
||||
biblatex-iso690
|
||||
libertine
|
||||
minted
|
||||
upquote
|
||||
lipsum
|
||||
footmisc
|
||||
#(setq org-latex-compiler "lualatex")
|
||||
#(setq org-preview-latex-default-process 'dvisvgm)
|
||||
]
|
||||
))
|
||||
];
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
texlab
|
||||
ltex-ls-plus
|
||||
biber
|
||||
(pkgs.texliveMedium.withPackages (
|
||||
ps:
|
||||
with ps; [
|
||||
# these few pkgs are used in the CV template
|
||||
titlesec # allows creating custom \section
|
||||
marvosym # some symboles
|
||||
ebgaramond # Use the EB Garamond font
|
||||
microtype # To enable letterspacing
|
||||
fontaxes
|
||||
# these few pkgs were used for my TM
|
||||
svg
|
||||
catchfile
|
||||
caption
|
||||
transparent
|
||||
cfr-lm
|
||||
svn-prov
|
||||
nfssext-cfr
|
||||
hyphenat
|
||||
csquotes
|
||||
enumitem
|
||||
chngcntr
|
||||
tcolorbox
|
||||
pdfcol
|
||||
wrapfig
|
||||
tocloft
|
||||
lastpage
|
||||
biblatex
|
||||
biblatex-iso690
|
||||
libertine
|
||||
minted
|
||||
upquote
|
||||
lipsum
|
||||
footmisc
|
||||
#(setq org-latex-compiler "lualatex")
|
||||
#(setq org-preview-latex-default-process 'dvisvgm)
|
||||
]
|
||||
))
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user