From 5e375f01203f01c815337ea70e14e6b2579fac8a Mon Sep 17 00:00:00 2001 From: Tomas Rivera <137088692+Totorile1@users.noreply.github.com> Date: Fri, 27 Mar 2026 09:29:22 +0100 Subject: [PATCH] updated LaTeX package list --- README.md | 1 + hosts/laptop/configuration.nix | 1 - hosts/laptop/home.nix | 26 ++++++++++++++++++++++++++ modules/home-manager/thunderbird.nix | 12 ++++++++++++ 4 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 modules/home-manager/thunderbird.nix diff --git a/README.md b/README.md index fef7b0f..4977488 100644 --- a/README.md +++ b/README.md @@ -20,3 +20,4 @@ sudo nixos-rebuild switch --flake ~/nixos/#laptop ### Things that don't work reliably and need manual setting. - Librewolf's extension's settings - Librewolf's bookmarks +- Thunderbird's email servers diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index bebd13e..41b27da 100755 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -161,7 +161,6 @@ environment.systemPackages = with pkgs; [ # 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 - kdePackages.dolphin gnome-calculator snapshot gnome-characters diff --git a/hosts/laptop/home.nix b/hosts/laptop/home.nix index c697538..147120c 100755 --- a/hosts/laptop/home.nix +++ b/hosts/laptop/home.nix @@ -32,6 +32,7 @@ ../../modules/home-manager/cursor.nix # cursor (the icon not the app) ../../modules/home-manager/ripgrep.nix # better grep ../../modules/home-manager/obsidian.nix + ../../modules/home-manager/thunderbird.nix # email client ]; #programs.nixvim = { @@ -82,6 +83,7 @@ (pkgs.callPackage ../../modules/scripts/QSnotifyhistory.nix {}) #pkgs pkgs.gruvbox-gtk-theme + pkgs.biber (pkgs.texliveMedium.withPackages ( ps: with ps; [ # these few pkgs are used in the CV template @@ -90,6 +92,30 @@ 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) ])) diff --git a/modules/home-manager/thunderbird.nix b/modules/home-manager/thunderbird.nix new file mode 100644 index 0000000..c05482b --- /dev/null +++ b/modules/home-manager/thunderbird.nix @@ -0,0 +1,12 @@ +{ + config, + pkgs, + ... +}: { + programs.thunderbird = { + enable = true; + profiles.tomasr = { + isDefault = true; + }; + }; +}