LinuxCommandLibrary

devenv

Fast, Declarative, Reproducible and Composable Developer Environments using Nix.

TLDR

Initialise the environment

$ devenv init
copy


Enter the Development Environment with relaxed hermeticity (state of being airtight)
$ devenv shell --impure
copy


Get detailed information about the current environment
$ devenv info --verbose
copy


Start processes with devenv
$ devenv up --config /[file]/[path]/
copy


Clean the environment variables and re-enter the shell in offline mode
$ devenv --clean --offline
copy


Delete the previous shell generations
$ devenv gc
copy

Copied to clipboard