latex: separated into new file

This commit is contained in:
2026-05-17 09:46:27 +02:00
parent 1982e2a58d
commit 325f982032
3 changed files with 49 additions and 40 deletions
+1 -2
View File
@@ -32,6 +32,7 @@
../../modules/nixos/documentation.nix ../../modules/nixos/documentation.nix
../../modules/nixos/IO.nix ../../modules/nixos/IO.nix
../../modules/fonts.nix ../../modules/fonts.nix
../../modules/latex.nix
]; ];
@@ -157,10 +158,8 @@
glfw # raylib and some dependecies glfw # raylib and some dependecies
cling # c interpreter used for coding cling # c interpreter used for coding
# lsp # lsp
texlab
clang-tools clang-tools
python311Packages.python-lsp-server python311Packages.python-lsp-server
lua-language-server
ltex-ls-plus ltex-ls-plus
pylint pylint
black black
-38
View File
@@ -88,44 +88,6 @@
(pkgs.callPackage ../../hostsModules/laptop/qt/qtbatticon.nix {}) (pkgs.callPackage ../../hostsModules/laptop/qt/qtbatticon.nix {})
#pkgs #pkgs
pkgs.gruvbox-gtk-theme 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)
]
))
]; ];
+48
View File
@@ -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)
]
))
];
}