From 55bc1d62dd6e4c7e616940708a75723c8c18b8a4 Mon Sep 17 00:00:00 2001 From: Valentin Gagarin Date: Wed, 14 Aug 2024 20:54:37 +0200 Subject: [PATCH] clarify wording, add link --- source/tutorials/first-steps/ad-hoc-shell-environments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tutorials/first-steps/ad-hoc-shell-environments.md b/source/tutorials/first-steps/ad-hoc-shell-environments.md index 3af545b70..75697c628 100644 --- a/source/tutorials/first-steps/ad-hoc-shell-environments.md +++ b/source/tutorials/first-steps/ad-hoc-shell-environments.md @@ -179,7 +179,7 @@ git version 2.33.1 There are three things going on here: -1. `--run` executes the given command within the resulting Nix shell (which is a [Bash](https://www.gnu.org/software/bash/) sub-shell) and exits when it's done. +1. `--run` executes the given [Bash command](https://www.gnu.org/software/bash/manual/bash.html#Shell-Commands) within the environment created by Nix, and exits when it's done. You can use this with `nix-shell` whenever you want to quickly run a program you don't have installed on your machine.