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 = [
|
2024-11-18 11:12:08 +10:00
|
|
|
inputs.self.darwinModules.ci-builder
|
2024-04-10 08:46:48 +10:00
|
|
|
inputs.self.darwinModules.hercules-ci
|
2023-09-06 10:14:00 +10:00
|
|
|
inputs.self.darwinModules.remote-builder
|
2023-07-17 13:53:06 +10:00
|
|
|
];
|
2023-05-16 18:58:13 +10:00
|
|
|
|
2024-11-21 17:31:14 +10:00
|
|
|
nix.settings.max-jobs = 8;
|
|
|
|
|
2024-07-31 15:41:40 +10:00
|
|
|
nixCommunity.darwin.ipv6 = "2a09:9340:808:60b::1 64 fe80::1";
|
|
|
|
|
2024-07-06 09:45:02 +10:00
|
|
|
nix.settings.sandbox = "relaxed";
|
2023-05-16 18:58:13 +10:00
|
|
|
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
|
|
|
system.stateVersion = 4;
|
|
|
|
}
|