This commit is contained in:
2025-12-01 19:32:36 +09:00
parent a634fde4f3
commit 8f7e566f5b
8 changed files with 556 additions and 1 deletions

15
shell.nix Normal file
View File

@@ -0,0 +1,15 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
yarn
python313
python313Packages.numpy
];
shellHook = ''
echo "Welcome to the project development shell!"
export MY_PROJECT_VAR="hello"
'';
}