updated LaTeX package list

This commit is contained in:
Tomas Rivera
2026-03-27 09:29:22 +01:00
parent c5fc5df2e8
commit 5e375f0120
4 changed files with 39 additions and 1 deletions
+1
View File
@@ -20,3 +20,4 @@ sudo nixos-rebuild switch --flake ~/nixos/#laptop
### Things that don't work reliably and need manual setting. ### Things that don't work reliably and need manual setting.
- Librewolf's extension's settings - Librewolf's extension's settings
- Librewolf's bookmarks - Librewolf's bookmarks
- Thunderbird's email servers
-1
View File
@@ -161,7 +161,6 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# use pkgs-unstable if you want the package from the unstable channel # use pkgs-unstable if you want the package from the unstable channel
#we need to install gnome and kde utils individually as we dont use gnome #we need to install gnome and kde utils individually as we dont use gnome
kdePackages.dolphin
gnome-calculator gnome-calculator
snapshot snapshot
gnome-characters gnome-characters
+26
View File
@@ -32,6 +32,7 @@
../../modules/home-manager/cursor.nix # cursor (the icon not the app) ../../modules/home-manager/cursor.nix # cursor (the icon not the app)
../../modules/home-manager/ripgrep.nix # better grep ../../modules/home-manager/ripgrep.nix # better grep
../../modules/home-manager/obsidian.nix ../../modules/home-manager/obsidian.nix
../../modules/home-manager/thunderbird.nix # email client
]; ];
#programs.nixvim = { #programs.nixvim = {
@@ -82,6 +83,7 @@
(pkgs.callPackage ../../modules/scripts/QSnotifyhistory.nix {}) (pkgs.callPackage ../../modules/scripts/QSnotifyhistory.nix {})
#pkgs #pkgs
pkgs.gruvbox-gtk-theme pkgs.gruvbox-gtk-theme
pkgs.biber
(pkgs.texliveMedium.withPackages ( (pkgs.texliveMedium.withPackages (
ps: with ps; [ ps: with ps; [
# these few pkgs are used in the CV template # these few pkgs are used in the CV template
@@ -90,6 +92,30 @@
ebgaramond # Use the EB Garamond font ebgaramond # Use the EB Garamond font
microtype # To enable letterspacing microtype # To enable letterspacing
fontaxes 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-latex-compiler "lualatex")
#(setq org-preview-latex-default-process 'dvisvgm) #(setq org-preview-latex-default-process 'dvisvgm)
])) ]))
+12
View File
@@ -0,0 +1,12 @@
{
config,
pkgs,
...
}: {
programs.thunderbird = {
enable = true;
profiles.tomasr = {
isDefault = true;
};
};
}