R""(

Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help).

nix develop starts a bash shell that provides an interactive build environment nearly identical to what Lix would use to build installable. Inside this shell, environment variables and shell functions are set up so that you can interactively and incrementally build your package.

Nix determines the build environment by building a modified version of the derivation installable that just records the environment initialised by stdenv and exits. This build environment can be recorded into a profile using --profile.

The prompt used by the bash shell can be customised by setting the bash-prompt, bash-prompt-prefix, and bash-prompt-suffix settings in nix.conf or in the flake's nixConfig attribute.

If no flake output attribute is given, nix develop tries the following flake output attributes:

If a flake output name is given, nix develop tries the following flake output attributes:

)""