build: set up project for bulkgen

This commit is contained in:
Konstantin Fickel 2026-02-13 19:32:47 +01:00
commit 4fd7f94db3
Signed by: kfickel
GPG key ID: A793722F9933C1A5
10 changed files with 707 additions and 0 deletions

18
devenv.nix Normal file
View file

@ -0,0 +1,18 @@
{
...
}:
{
languages = {
python = {
enable = true;
uv.enable = true;
};
};
git-hooks.hooks = {
pyright.enable = true;
ruff.enable = true;
ruff-format.enable = true;
commitizen.enable = true;
};
}