diff options
Diffstat (limited to 'users/wpcarro/website/blog/posts/nix-shell-note.md')
-rw-r--r-- | users/wpcarro/website/blog/posts/nix-shell-note.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/users/wpcarro/website/blog/posts/nix-shell-note.md b/users/wpcarro/website/blog/posts/nix-shell-note.md index 6f709b4f1abe..da33c846ceaa 100644 --- a/users/wpcarro/website/blog/posts/nix-shell-note.md +++ b/users/wpcarro/website/blog/posts/nix-shell-note.md @@ -28,7 +28,7 @@ Pass the Nix expression to `nix-shell -p`: ## Explanation This works because Nix forwards the arguments passed to `-p` (i.e. `--packages`) -and interpolates them into this expression here: [source](nix-src) +and interpolates them into this expression here: [source][nix-src] ```nix { ... }@args: @@ -43,7 +43,7 @@ with import <nixpkgs> args; ``` So really you can pass-in *any* valid Nix expression that produces a derivation -and `nix-shell` will put their outputs on your `PATH`. +and `nix-shell` will put its outputs on your `PATH`. Enjoy! |