infra/hosts/darwin02/default.nix

22 lines
473 B
Nix
Raw Normal View History

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.ci-builder
inputs.self.darwinModules.hercules-ci
inputs.self.darwinModules.remote-builder
2023-07-17 13:53:06 +10:00
];
2023-05-16 18:58:13 +10:00
2024-12-09 10:33:51 +10:00
nix.settings.max-jobs = 10;
2024-11-21 17:31:14 +10:00
2024-12-09 10:33:51 +10:00
nixCommunity.darwin.ipv6 = "2a01:4f8:d1:5715::2 64 2a01:4f8:d1:5715::1";
2024-07-31 15:41:40 +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" ];
2024-12-09 10:33:51 +10:00
system.stateVersion = 5;
2023-05-16 18:58:13 +10:00
}