From 10093e1e650eb07e871c3edfd8ec8d0e3c55283a Mon Sep 17 00:00:00 2001 From: RGBCube Date: Thu, 5 Jun 2025 18:59:11 +0300 Subject: [PATCH] blog(nix-iceberg): update manual links --- site/blog/2024-04-15-nix-iceberg.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/blog/2024-04-15-nix-iceberg.md b/site/blog/2024-04-15-nix-iceberg.md index c693b2f..e1b109c 100644 --- a/site/blog/2024-04-15-nix-iceberg.md +++ b/site/blog/2024-04-15-nix-iceberg.md @@ -744,7 +744,7 @@ want with this information. As surprising as it sounds, Nix does indeed supports plugins. You can load 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. 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 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 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 @@ -971,7 +971,7 @@ TODO ### `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 expressions.