Add initial DevEnv.

This commit is contained in:
Michael Lehmann
2025-10-05 12:22:21 +02:00
parent 31765f9db3
commit 029a68032f
5 changed files with 169 additions and 0 deletions

31
devenv.nix Normal file
View File

@@ -0,0 +1,31 @@
{pkgs, ...}: {
languages = {
python = {
enable = true;
package = pkgs.python313;
};
};
packages = [];
git-hooks = {
enable = true;
hooks = {
black = {
enable = true;
};
isort = {
enable = true;
};
mypy = {
enable = true;
};
markdownlint = {
enable = true;
};
};
};
}