infra/hosts/darwin01/configuration.nix
zowoq c0c8139a51 disable sandbox on darwin hosts
seems to have been broken by nix 2.18.4
2024-07-01 06:52:55 +00:00

19 lines
394 B
Nix

{ inputs, ... }:
{
imports = [
inputs.self.darwinModules.common
inputs.self.darwinModules.builder
inputs.self.darwinModules.community-builder
];
nix.settings.sandbox = false;
nix.settings.extra-platforms = [ "x86_64-darwin" ];
# disable nixos-tests
nix.settings.system-features = [ "big-parallel" ];
networking.hostName = "darwin01";
system.stateVersion = 4;
}