infra/hosts/darwin01/default.nix

21 lines
418 B
Nix
Raw Normal View History

2024-03-08 09:51:37 +10:00
{ inputs, ... }:
{
imports = [
inputs.self.darwinModules.community-builder
];
2025-01-27 10:56:03 +10:00
nix.settings.cores = 5;
nix.settings.max-jobs = 8;
2024-11-21 17:31:14 +10:00
2024-12-09 10:30:41 +10:00
nixCommunity.darwin.ipv6 = "2a01:4f8:d1:5716::2 64 2a01:4f8:d1:5716::1";
2024-07-31 15:41:40 +10:00
nix.settings.sandbox = "relaxed";
2024-03-08 09:51:37 +10:00
nix.settings.extra-platforms = [ "x86_64-darwin" ];
# disable nixos-tests
nix.settings.system-features = [ "big-parallel" ];
2024-12-09 10:30:41 +10:00
system.stateVersion = 5;
2024-03-08 09:51:37 +10:00
}