about summary refs log tree commit diff
path: root/src/libstore/globals.hh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2018-02-22T13·19+0100
committerEelco Dolstra <edolstra@gmail.com>2018-02-22T13·20+0100
commite8d53bfdc94eea142542de92ff0822eb283d293f (patch)
tree9c9ea013f69d3c85f528fe316ba565b2400111bf /src/libstore/globals.hh
parenteaa52c34b40aa2f899280e6aa99d5fa0a420ad3a (diff)
Revert "Enable sandbox builds on Linux by default"
This reverts commit ddc58e789636e1b94149c342575d92583251fbf6.

https://hydra.nixos.org/eval/1435322
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r--src/libstore/globals.hh8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh
index 12917a438f..dd01f832df 100644
--- a/src/libstore/globals.hh
+++ b/src/libstore/globals.hh
@@ -220,13 +220,7 @@ public:
     Setting<bool> enableNativeCode{this, false, "allow-unsafe-native-code-during-evaluation",
         "Whether builtin functions that allow executing native code should be enabled."};
 
-    Setting<SandboxMode> sandboxMode{this,
-        #if __linux__
-          smEnabled
-        #else
-          smDisabled
-        #endif
-        , "sandbox",
+    Setting<SandboxMode> sandboxMode{this, smDisabled, "sandbox",
         "Whether to enable sandboxed builds. Can be \"true\", \"false\" or \"relaxed\".",
         {"build-use-chroot", "build-use-sandbox"}};