diff options
author | Vincent Ambo <mail@tazj.in> | 2018-10-10T11·34+0200 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2018-10-10T11·34+0200 |
commit | ab65fb2371a1140dd6bde542148c8556be37913c (patch) | |
tree | 67738d4a34c25b46d27fd04764071716231c7524 | |
parent | ff1f5271f4e16a51ec8cd7d66c57bc096fc3d214 (diff) |
fix(adho): Disable Nix sandbox on adho
Sandboxing was enabled by default in NixOS 18.09, but it breaks some of the less-than-clean work build setups.
-rw-r--r-- | adho-configuration.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/adho-configuration.nix b/adho-configuration.nix index ca3ea6dd431b..5b9290a179b9 100644 --- a/adho-configuration.nix +++ b/adho-configuration.nix @@ -18,6 +18,9 @@ # Give me more entropy: services.haveged.enable = true; + # Disable sandbox to let work-builds function: + nix.useSandbox = false; + # Yubikey related: services.pcscd.enable = true; environment.systemPackages = with pkgs; [ |