diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2022-05-12 20:10:02 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2022-05-12 20:10:02 +0000 |
commit | 49ad315c0357116787ef45a1249009b6bc00301f (patch) | |
tree | 30fe74db8018feab10f2cd4616c91d605bbd93a0 /src/nix/nix.md | |
parent | b18720ee175d6c019be964955efc1633be1c434d (diff) |
Use `^` not `!` in indexed store derivations installable syntax
Match the other syntax that was recently added
Diffstat (limited to 'src/nix/nix.md')
-rw-r--r-- | src/nix/nix.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/nix.md b/src/nix/nix.md index 34c763c69..32112d38d 100644 --- a/src/nix/nix.md +++ b/src/nix/nix.md @@ -130,7 +130,7 @@ the Nix store. Here are the recognised types of installables: If you want to operate on the store derivation itself, pass the `--derivation` flag. -* **Indexed store derivations**: `/nix/store/p7gp6lxdg32h4ka1q398wd9r2zkbbz2v-hello-2.10.drv!out` +* **Indexed store derivations**: `/nix/store/p7gp6lxdg32h4ka1q398wd9r2zkbbz2v-hello-2.10.drv^out` *(Experimental, part of by the `computed-derivations` experimental feature.)* |