infra/hosts/darwin03/configuration.nix

19 lines
350 B
Nix
Raw Normal View History

2023-07-17 09:37:43 +10:00
{ inputs, ... }:
{
imports = [
inputs.self.darwinModules.common
2023-09-07 12:47:33 +10:00
inputs.self.darwinModules.builder
2023-07-17 09:37:43 +10:00
];
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;
}