19 lines
398 B
Nix
19 lines
398 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.self.darwinModules.common
|
|
inputs.self.darwinModules.builder
|
|
inputs.self.darwinModules.community-builder
|
|
];
|
|
|
|
nix.settings.sandbox = "relaxed";
|
|
nix.settings.extra-platforms = [ "x86_64-darwin" ];
|
|
|
|
# disable nixos-tests
|
|
nix.settings.system-features = [ "big-parallel" ];
|
|
|
|
networking.hostName = "darwin03";
|
|
|
|
system.stateVersion = 4;
|
|
}
|