diff options
-rw-r--r-- | src/libexpr/eval-settings.hh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/libexpr/eval-settings.hh b/src/libexpr/eval-settings.hh index 98fe6881e..4674acda2 100644 --- a/src/libexpr/eval-settings.hh +++ b/src/libexpr/eval-settings.hh @@ -14,8 +14,11 @@ struct EvalSettings : Config static std::string resolvePseudoUrl(std::string_view url); - Setting<bool> enableNativeCode{this, false, "allow-unsafe-native-code-during-evaluation", - "Whether builtin functions that allow executing native code should be enabled."}; + Setting<bool> enableNativeCode{this, false, "allow-unsafe-native-code-during-evaluation", R"( + Whether builtin functions that allow executing native code should be enabled. + + In particular, this adds the `importNative` and `exec` builtins. + )"}; Setting<Strings> nixPath{ this, getDefaultNixPath(), "nix-path", |