From 5a9d8a65335dd59bd8162ec0638adf460f552454 Mon Sep 17 00:00:00 2001 From: Olaf Date: Thu, 8 May 2025 18:34:53 +0200 Subject: [PATCH] nixd moved --- modules/shared/packages.nix | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/modules/shared/packages.nix b/modules/shared/packages.nix index 039a565..2c5549a 100644 --- a/modules/shared/packages.nix +++ b/modules/shared/packages.nix @@ -1,6 +1,9 @@ { pkgs }: -with pkgs; [ +with pkgs; +[ + # Nix + nixd # General packages for development and system management #alacritty aspell @@ -62,6 +65,28 @@ with pkgs; [ python3 virtualenv - # Development + # Rust Related + rustc + cargo + + # Tex and LaTex + pandoc + mdbook + + (texlive.combine { + inherit (texlive) + scheme-small + enumitem + xifthen + ifmtarg + fontawesome5 + sourcesanspro + tcolorbox + tikzfill + makecell + bibunits + ; + + }) ]