2023-07-17 09:37:43 +10:00
|
|
|
{ inputs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
inputs.self.darwinModules.common
|
2023-09-07 12:47:33 +10:00
|
|
|
inputs.self.darwinModules.builder
|
2023-07-17 09:37:43 +10:00
|
|
|
];
|
|
|
|
|
|
|
|
nix.settings.sandbox = "relaxed";
|
|
|
|
nix.settings.extra-platforms = [ "x86_64-darwin" ];
|
|
|
|
|
|
|
|
# disable nixos-tests
|
|
|
|
nix.settings.system-features = [ "big-parallel" ];
|
|
|
|
|
|
|
|
networking.hostName = "darwin03";
|
|
|
|
|
|
|
|
system.stateVersion = 4;
|
|
|
|
}
|