2023-07-17 13:53:06 +10:00
|
|
|
{ inputs, ... }:
|
2023-05-16 18:58:13 +10:00
|
|
|
|
2023-07-17 13:53:06 +10:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
inputs.self.darwinModules.common
|
|
|
|
inputs.self.darwinModules.builder
|
|
|
|
inputs.self.darwinModules.hercules-ci
|
|
|
|
];
|
2023-05-16 18:58:13 +10:00
|
|
|
|
|
|
|
nix.settings.sandbox = "relaxed";
|
|
|
|
nix.settings.extra-platforms = [ "x86_64-darwin" ];
|
|
|
|
|
2023-06-11 12:53:38 +10:00
|
|
|
# disable nixos-tests
|
|
|
|
nix.settings.system-features = [ "big-parallel" ];
|
|
|
|
|
2023-05-16 18:58:13 +10:00
|
|
|
networking.hostName = "darwin02";
|
|
|
|
|
|
|
|
system.stateVersion = 4;
|
|
|
|
}
|