diff options
author | Linnnus <[email protected]> | 2025-01-18 13:51:40 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-01-18 13:51:40 +0100 |
commit | 75b942116dfb0c8eb334c60e437a3a3530b6b565 (patch) | |
tree | 89212b9fe19dbd4250eadc06038df0a83b4483de /shared/darwin | |
parent | f5fc33abb93e058b943e5ef0dc8c8a3c02255804 (diff) |
Set sandbox = relaxed on Darwin hosts
Diffstat (limited to 'shared/darwin')
-rw-r--r-- | shared/darwin/common-nix-settings/default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/shared/darwin/common-nix-settings/default.nix b/shared/darwin/common-nix-settings/default.nix new file mode 100644 index 0000000..16d0fd6 --- /dev/null +++ b/shared/darwin/common-nix-settings/default.nix @@ -0,0 +1,12 @@ +# This module sets common settings related to Nix such as enabling flakes and +# using overlays everywhere. +# +# Most of the heavy lifting is done in `shared/nixos-and-darwin/common-nix-settings`. +# This module is limited to Darwin-specific settings. +{ + imports = [ + ../../nixos-and-darwin/common-nix-settings + ]; + + nix.settings.sandbox = "relaxed"; +} |