flake.nix: init

This commit is contained in:
2025-06-07 14:34:35 +02:00
parent 2ecd95f9b0
commit 1c7c75173d
6 changed files with 144 additions and 2 deletions

16
shell.nix Normal file
View File

@@ -0,0 +1,16 @@
{
mkShell,
python,
ruff,
uv,
}:
mkShell {
packages = [
ruff
uv
(python.withPackages (ps: with ps; [
sqlalchemy
]))
];
}