treewide: update everything nix

This commit is contained in:
2025-03-19 17:47:51 +01:00
parent 28228beccd
commit 122ac2ab18
8 changed files with 99 additions and 70 deletions

12
nix/shell.nix Normal file
View File

@@ -0,0 +1,12 @@
{
mkShell,
python3Packages,
ruff,
}:
mkShell {
packages = [
python3Packages.black
ruff
];
}