Files
FindMy.py/shell.nix
2025-08-04 16:09:40 +02:00

22 lines
334 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
let
unstable = import (fetchTarball "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz") { };
in
pkgs.mkShell {
packages = with pkgs; [
python312
unstable.uv
gh
graphviz
];
shellHook = ''
if [[ -d .venv/ ]]; then
source .venv/bin/activate
fi
'';
}