mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-22 08:48:29 +02:00
30 lines
495 B
Nix
30 lines
495 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
nodejs_24
|
|
pnpm
|
|
|
|
#-- python
|
|
conda
|
|
uv # python project package manager
|
|
pipx # Install and Run Python Applications in Isolated Environments
|
|
(python313.withPackages (
|
|
ps: with ps; [
|
|
pandas
|
|
requests
|
|
pyquery
|
|
pyyaml
|
|
numpy
|
|
|
|
# model downloaders
|
|
huggingface-hub
|
|
modelscope
|
|
]
|
|
))
|
|
|
|
rustc
|
|
cargo # rust package manager
|
|
go
|
|
];
|
|
}
|