From 013ceddd802943a677ba869df6f67be5ba8ea719 Mon Sep 17 00:00:00 2001 From: Gil Forsyth Date: Tue, 7 Nov 2023 16:07:15 -0500 Subject: [PATCH] docs(contribute): fix instructions for nix environment setup --- docs/contribute/01_environment.qmd | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/contribute/01_environment.qmd b/docs/contribute/01_environment.qmd index 3bfd84220112..f14e46da92e6 100644 --- a/docs/contribute/01_environment.qmd +++ b/docs/contribute/01_environment.qmd @@ -198,13 +198,14 @@ for manager, params in managers.items(): nix-shell -p cachix --run 'cachix use ibis' ``` -1. Run `nix-shell` in the checkout directory: +1. Run `nix develop` in the checkout directory: ```sh cd ibis - nix-shell + nix develop ``` + This will launch a `bash` shell with all of the required dependencies installed. This may take a while due to artifact download from the cache. :::