diff --git a/docs/development/dev-environments.md b/docs/development/dev-environments.md index 3c1f4c4..ddfa23c 100644 --- a/docs/development/dev-environments.md +++ b/docs/development/dev-environments.md @@ -6,10 +6,18 @@ Luckily, some people in the community have done this for us. The following repos - [dev-templates](https://github.com/the-nix-way/dev-templates) -If you think the structure of `flake.nix` is still too complicated and want a simpler way, you can also consider using the following project, which encapsulates Nix more thoroughly and provides users with a simpler definition: +If you think the structure of `flake.nix` is still too complicated and want a simpler way, +you can consider using the following project, +which encapsulates Nix more thoroughly and provides users with a simpler definition: - [cachix/devenv](https://github.com/cachix/devenv) + +If you don't want to write a single line of nix code and just want to get a reproducible development environment with minimal cost, +here's a tool that might meet your needs: + +- [jetpack-io/devbox](https://github.com/jetpack-io/devbox) + ## Dev Environment for Python The development environment for Python is much more cumbersome compared to languages like Java or Go because it defaults to installing software in the global environment. diff --git a/docs/zh/development/dev-environments.md b/docs/zh/development/dev-environments.md index 80025a6..8833239 100644 --- a/docs/zh/development/dev-environments.md +++ b/docs/zh/development/dev-environments.md @@ -10,6 +10,9 @@ - [cachix/devenv](https://github.com/cachix/devenv) +如果你连任何一行 nix 代码都不想写,只想以最小的代价获得一个可复现的开发环境,这里也有一个或许能符合你需求的工具: + +- [jetpack-io/devbox](https://github.com/jetpack-io/devbox) ## Python 开发环境