20 lines
437 B
Nix
20 lines
437 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.self.darwinModules.common
|
|
inputs.self.darwinModules.builder
|
|
inputs.self.darwinModules.hercules-ci
|
|
inputs.self.darwinModules.remote-builder
|
|
];
|
|
|
|
nix.settings.sandbox = "relaxed";
|
|
nix.settings.extra-platforms = [ "x86_64-darwin" ];
|
|
|
|
# disable nixos-tests
|
|
nix.settings.system-features = [ "big-parallel" ];
|
|
|
|
networking.hostName = "darwin02";
|
|
|
|
system.stateVersion = 4;
|
|
}
|