First commit, empty project env

This commit is contained in:
2025-03-10 14:25:19 +00:00
commit 15105d5507
9 changed files with 5421 additions and 0 deletions

20
devenv.nix Normal file
View File

@@ -0,0 +1,20 @@
{
pkgs,
lib,
config,
inputs,
...
}: {
packages = [pkgs.git];
languages.python = {
enable = true;
uv = {
enable = true;
sync = {
enable = true;
allExtras = true;
};
};
};
}