Add initial DevEnv.
This commit is contained in:
31
devenv.nix
Normal file
31
devenv.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user