Select the types of activity you want to include in your feed.
A simple helper that makes it easy to package Nu scripts with Nix, including inline dependency declarations for external commands and other packaged scripts.
···5252nu2nix supports a custom format for declaring external dependencies inline in your script files.
5353All declared dependencies are automatically added to the script's `$PATH` when executed, using a wrapper script.
54545555-> ![NOTE]
5555+> [!WARNING]
5656> Only dependencies you declare in the `External Dependencies` comment or the `extraDependencies` argument to `mkNuScript` will be included in the script's `$PATH` wrapper. `$PATH` is completely overridden, not appended to. This helps with reproducibility; if an external command isn't explicitly included in the wrapper, Nushell won't be able to find it at runtime. The only exception to this is Nushell itself, as Nushell is implicitly added to the script's `$PATH` wrapper by `mkNuScript`.
57575858```nu