Files
niri/shell.nix
2025-12-01 20:57:17 +09:00

19 lines
465 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
yarn
python313
python313Packages.numpy
python313Packages.pillow
python313Packages.opencv-python
];
shellHook = ''
echo "Welcome to the project development shell!"
alias craw="/home/bangae1/IdeaProjects/moani/crawling/.venv/bin/python /home/bangae1/IdeaProjects/moani/crawling/toki/book_firefox.py"
export MY_PROJECT_VAR="hello"
'';
}