Files
FindMy.py/shell.nix
2024-07-15 16:55:10 +02:00

15 lines
200 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [
python312
poetry
ruff
];
shellHook = ''
if [[ -d .venv/ ]]; then
source .venv/bin/activate
fi
'';
}