update dev runtime

This commit is contained in:
Yan Lin 2026-01-27 17:06:14 +01:00
parent 258efe1481
commit 2148c540ee
5 changed files with 52 additions and 27 deletions

23
flake.nix Normal file
View file

@ -0,0 +1,23 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }: let
systems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f nixpkgs.legacyPackages.${system});
in {
devShells = forAllSystems (pkgs: {
default = pkgs.mkShell {
packages = with pkgs; [
uv python312
(writeShellScriptBin "serve" ''
python generate.py && python watch.py
'')
];
shellHook = ''
uv sync
source .venv/bin/activate
'';
};
});
};
}