infra/hosts/darwin01/default.nix

20 lines
381 B
Nix
Raw Normal View History

2024-03-08 09:51:37 +10:00
{ inputs, ... }:
{
imports = [
inputs.self.darwinModules.community-builder
];
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:630::1 64 fe80::1";
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" ];
system.stateVersion = 4;
}