Basic env and description

This commit is contained in:
Arkadiusz Jedrzejewski 2026-03-15 17:21:35 +01:00
parent b5261ba0f6
commit 246ef4c829
9 changed files with 237 additions and 163 deletions

14
devenv.nix Normal file
View file

@ -0,0 +1,14 @@
{
name = "kronos";
languages.python = {
enable = true;
venv.enable = true;
version = "3.13.0";
uv = {
enable = true;
sync.enable = true;
sync.allExtras = true;
};
};
}