feat: idols-akane - more packages

This commit is contained in:
Ryan Yin
2026-03-08 01:16:31 +08:00
parent f9e29233cc
commit c12fb46228

View File

@@ -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
];
}