Files
niri/shell.nix
2025-12-01 19:32:36 +09:00

16 lines
261 B
Nix

{ 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"
'';
}