Skip to content

Automatic shell activation

You can configure devenv to seamlessly switch development environments when navigating between project directories.

This feature relies on a separate tool called direnv (not to be confused with devenv).

Installing direnv

  1. Install direnv
  2. Add the direnv hook to your shell

Configure shell activation

To enable automatic shell activation, create an .envrc file in your project directory with the following content:

.envrc
source_url "https://raw.githubusercontent.com/cachix/devenv/82c0147677e510b247d8b9165c54f73d32dfd899/direnvrc" "sha256-7u4iDd1nZpxL4tCzmPG0dQgC5V+/44Ba+tHkPob1v2k="

use devenv
.envrc
eval "$(devenv direnvrc)"

use devenv

This file configures direnv to use devenv for shell activation.

devenv init will create this file by default when you initialize a new project.

Approving and loading the shell

Once the .envrc file is in place, you'll see a warning in your shell:

direnv: error ~/myproject/.envrc is blocked. Run `direnv allow` to approve its content

Run direnv allow to approve the .envrc file. This step is a security measure to ensure you've reviewed the content before allowing it to modify your shell environment.

After approval, direnv will automatically load and unload the devenv environment whenever you enter and exit the project directory:

$ cd /home/user/myproject/
direnv: loading ~/myproject/.envrc
Building shell ...
Entering shell ...

(devenv) $

Customizing PS1

If you'd like to use direnv and have your prompt be aware of it, we recommend installing Starship.

Ignoring the .direnv directory

The .direnv directory will be added to your .gitignore file by default when you run devenv init.

To add it manually, run:

echo ".direnv" >> .gitignore

Manually managing updates to direnvrc

We occasionally make updates to our direnv integration script, also known as the direnvrc.

From v1.4 and onwards, devenv will use the latest compatible version if set up using the latest method described above in Configure Shell Activation. For older versions, the pinned script has to be updated manually.

Pinning the direnvrc to a specific version from the source repository allows you audit the direnvrc script and have full control over when it is updated. The downside is that you will have to manually update the URL and content hash of the script for every single project individually.

The direnvrc can be found at:

https://raw.githubusercontent.com/cachix/devenv/VERSION/direnvrc

Replace VERSION with a valid git tag or branch name.

To use it in your .envrc, first compute its sha256 hash:

direnv fetchurl "https://raw.githubusercontent.com/cachix/devenv/VERSION/direnvrc"
Found hash: <HASH>

Then modify your .envrc, updating the URL and inserting the computed hash from the previous step:

source_url "https://raw.githubusercontent.com/cachix/devenv/VERSION/direnvrc" "<HASH>"

use devenv