Files
huizenbot/shell.nix

22 lines
330 B
Nix

{ pkgs ? import <nixpkgs> { config.allowUnfree = true; } }:
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (ps: with ps; [
httpx
beautifulsoup4
flask
lxml
]))
pkgs.claude-code
];
shellHook = ''
if [ -f .env ]; then
set -a
source .env
set +a
fi
'';
}