add dev override and web layer

This commit is contained in:
2026-04-04 14:47:01 +02:00
parent f1748214ce
commit 423a429f56
6 changed files with 711 additions and 3 deletions

View File

@@ -1,10 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
{ pkgs ? import <nixpkgs> { config.allowUnfree = true; } }:
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (ps: with ps; [
httpx
beautifulsoup4
flask
lxml
]))
pkgs.claude-code
@@ -15,7 +16,6 @@ pkgs.mkShell {
set -a
source .env
set +a
echo ".env geladen"
fi
'';
}