1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-07-31 13:07:46 +00:00

blog(nix-iceberg): update manual links

This commit is contained in:
RGBCube 2025-06-05 18:59:11 +03:00
parent 104140528a
commit 10093e1e65
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

View file

@ -744,7 +744,7 @@ want with this information.
As surprising as it sounds, Nix does indeed supports plugins. You can load As surprising as it sounds, Nix does indeed supports plugins. You can load
plugins using the plugins using the
[`plugin-files`](https://nix.dev/manual/nix/2.22/command-ref/conf-file#conf-plugin-files) [`plugin-files`](https://nix.dev/manual/nix/2.29/command-ref/conf-file.html#conf-plugin-files)
configuration option. configuration option.
From the configuration reference: From the configuration reference:
@ -776,7 +776,7 @@ Some example plugins are [`nix-doc`](https://github.com/lf-/nix-doc) and
## `/bin/sh` and sandbox impurity ## `/bin/sh` and sandbox impurity
By setting the By setting the
[`sandbox-paths`](https://nix.dev/manual/nix/2.22/command-ref/conf-file#conf-sandbox-paths) [`sandbox-paths`](https://nix.dev/manual/nix/2.29/command-ref/conf-file#conf-sandbox-paths)
option to `/bin/sh=/bin/sh`, Nix will bind the `/bin/sh` path in the build option to `/bin/sh=/bin/sh`, Nix will bind the `/bin/sh` path in the build
sandbox (left) to the `/bin/sh` path in the host (right). This is of course sandbox (left) to the `/bin/sh` path in the host (right). This is of course
impure, but is useful for bootstrapping from absolute scratch without copying impure, but is useful for bootstrapping from absolute scratch without copying
@ -971,7 +971,7 @@ TODO
### `importNative` ### `importNative`
[`builtins.importNative`](https://nix.dev/manual/nix/2.24/command-ref/conf-file.html#conf-allow-unsafe-native-code-during-evaluation) [`builtins.importNative`](https://nix.dev/manual/nix/2.29/command-ref/conf-file.html#conf-allow-unsafe-native-code-during-evaluation)
allows Nix expressions to import arbitrary dynamic libraries to produce Nix allows Nix expressions to import arbitrary dynamic libraries to produce Nix
expressions. expressions.