Загрузить файлы в «/»
This commit is contained in:
parent
c2895dfba8
commit
6b457ae132
2 changed files with 36 additions and 6 deletions
16
shell.nix
16
shell.nix
|
|
@ -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)"
|
||||
'';
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue