Files
FindMy.py/shell.nix
2025-06-14 16:30:22 +02:00

18 lines
308 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
];
shellHook = ''
if [[ -d .venv/ ]]; then
source .venv/bin/activate
fi
'';
}