aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/eval-settings.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libexpr/eval-settings.hh')
-rw-r--r--src/libexpr/eval-settings.hh7
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",