Загрузить файлы в «/»

This commit is contained in:
Gregory Bednov 2026-06-20 13:26:45 +03:00
commit 6b457ae132
2 changed files with 36 additions and 6 deletions

View file

@ -2,13 +2,17 @@
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (pythonPackages: [
pythonPackages.simpy
pythonPackages.prompt-toolkit
# Python + third-party deps
(pkgs.python313.withPackages (ps: [
ps.simpy
ps.prompt-toolkit
]))
pkgs.basedpyright
pkgs.codex-acp
pkgs.clang
# Frontend toolchain
pkgs.nodejs_22
];
shellHook = ''
echo "simpy-terns: python $(python --version 2>&1 | cut -d' ' -f2), node $(node --version)"
'';
}