nixos-and-flakes-book/docs/development/dev-environments.md

109 lines
5.3 KiB
Markdown
Raw Normal View History

2023-06-30 11:00:03 +02:00
# Dev Environments
2023-06-27 04:53:11 +02:00
2024-04-17 16:10:21 +02:00
On NixOS, in the global environment (home-manager), you can install only some general
development tools and SDKs, such as `git`, `vim`, `emacs`, `tmux`, `zsh`, etc. For the
dependencies of the project itself, it is best to have a separate `flake.nix` for each
project to manage their respective development environments.
For simplicity, you might also consider creating some general `flake.nix` templates for
common languages in advance, which can be copied and modified as needed.
Various plugins for editors like `neovim` will also have their own dependencies. These
dependencies can be considered to be added to the IDE's own environment through parameters
like `programs.neovim.extraPackages` in home-manager, ensuring that the IDE itself can run
properly without polluting the global environment.
## Templates for Development Environments
We have learned how to build development environments, but it's a bit tedious to write
`flake.nix` for each project.
2023-06-27 04:53:11 +02:00
Luckily, some people in the community have done this for us. The following repository
contains development environment templates for most programming languages. Just copy and
paste them:
2023-06-27 04:53:11 +02:00
2023-08-15 10:53:27 +02:00
- [MordragT/nix-templates](https://github.com/MordragT/nix-templates)
2024-04-17 16:10:21 +02:00
- [the-nix-way/dev-templates](https://github.com/the-nix-way/dev-templates)
2023-06-27 04:53:11 +02:00
2024-03-16 11:07:01 +01:00
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:
2023-06-27 04:53:11 +02:00
- [cachix/devenv](https://github.com/cachix/devenv)
2023-07-18 07:13:24 +02:00
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)
2023-07-18 07:13:24 +02:00
## 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. To
install software for the current project, you must create a virtual environment first
(unlike in languages such as JavaScript or Go, where virtual environments are not
necessary). This behavior is very unfriendly for Nix.
2023-07-18 07:13:24 +02:00
By default, when using pip in Python, it installs software globally. On NixOS, running
`pip install` directly will result in an error:
2023-07-18 07:13:24 +02:00
```bash
pip install -r requirements.txt
error: externally-managed-environment
× This environment is externally managed
╰─> This command has been disabled as it tries to modify the immutable
`/nix/store` filesystem.
To use Python with Nix and nixpkgs, have a look at the online documentation:
<https://nixos.org/manual/nixpkgs/stable/#python>.
note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
hint: See PEP 668 for the detailed specification.
```
Based on the error message, `pip install` is directly disabled by NixOS. Even when
attempting `pip install --user`, it is similarly disabled. To improve the reproducibility
of the environment, Nix eliminates these commands altogether. Even if we create a new
environment using methods like `mkShell`, these commands still result in errors
(presumably because the pip command in Nixpkgs itself has been modified to prevent any
modification instructions like `install` from running).
2023-07-18 07:13:24 +02:00
However, many project installation scripts are based on pip, which means these scripts
cannot be used directly. Additionally, the content in nixpkgs is limited, and many
packages from PyPI are missing. This requires users to package them themselves, adding a
lot of complexity and mental burden.
2023-07-18 07:13:24 +02:00
One solution is to use the `venv` virtual environment. Within a virtual environment, you
can use commands like pip normally:
2023-07-18 07:13:24 +02:00
```shell
python -m venv ./env
source ./env/bin/activate
```
Alternatively, you can use a third-party tool called `virtualenv`, but this requires
additional installation.
2023-07-18 07:13:24 +02:00
For those who still lack confidence in the venv created directly with Python, they may
prefer to include the virtual environment in `/nix/store` to make it immutable. This can
be achieved by directly installing the dependencies from `requirements.txt` or
`poetry.toml` using Nix. There are existing Nix packaging tools available to assist with
this:
2023-07-18 07:13:24 +02:00
> Note that even in these environments, running commands like `pip install` directly will
> still fail. Python dependencies must be installed through `flake.nix` because the data
> is located in the `/nix/store` directory, and these modification commands can only be
> executed during the Nix build phase.
2023-07-18 07:13:24 +02:00
2024-04-17 16:10:21 +02:00
- [python venv demo](https://github.com/MordragT/nix-templates/blob/master/python-venv/flake.nix)
2023-07-18 07:13:24 +02:00
- [poetry2nix](https://github.com/nix-community/poetry2nix)
The advantage of these tools is that they utilize the lock mechanism of Nix Flakes to
improve reproducibility. However, the downside is that they add an extra layer of
abstraction, making the underlying system more complex.
2023-07-18 07:13:24 +02:00
Finally, in some more complex projects, neither of the above solutions may be feasible. In
such cases, the best solution is to use containers such as Docker or Podman. Containers
have fewer restrictions compared to Nix and can provide the best compatibility.