infra/hosts/darwin01/default.nix
2024-11-25 02:57:16 +00:00

19 lines
381 B
Nix

{ inputs, ... }:
{
imports = [
inputs.self.darwinModules.community-builder
];
nix.settings.max-jobs = 8;
nixCommunity.darwin.ipv6 = "2a09:9340:808:630::1 64 fe80::1";
nix.settings.sandbox = "relaxed";
nix.settings.extra-platforms = [ "x86_64-darwin" ];
# disable nixos-tests
nix.settings.system-features = [ "big-parallel" ];
system.stateVersion = 4;
}