From c12fb4622801d4acef1b4edf968f6f73f7602140 Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Sun, 8 Mar 2026 01:16:31 +0800 Subject: [PATCH] feat: idols-akane - more packages --- hosts/idols-akane/packages.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 hosts/idols-akane/packages.nix diff --git a/hosts/idols-akane/packages.nix b/hosts/idols-akane/packages.nix new file mode 100644 index 00000000..e0742092 --- /dev/null +++ b/hosts/idols-akane/packages.nix @@ -0,0 +1,28 @@ +{ pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + nodejs_24 + pnpm + + #-- python + conda + (python313.withPackages ( + ps: with ps; [ + pipx # Install and Run Python Applications in Isolated Environments + uv # python project package manager + + pandas + requests + pyquery + pyyaml + numpy + + huggingface-hub # huggingface-cli + ] + )) + + rustc + cargo # rust package manager + go + ]; +}