flake/hosts/darwin/imac-2017.nix
2023-09-19 08:17:43 +08:00

18 lines
No EOL
337 B
Nix

{ ... }:
{
imports = [
../../flakes/darwin/main.nix
];
networking.knownNetworkServices = [
"Ethernet"
"Wi-Fi"
"Thunderbolt Bridge"
"Thunderbolt Bridge 2"
"iPhone USB"
];
networking.hostName = "iMac-macOS";
# The platform the configuration will be used on.
nixpkgs.hostPlatform = "x86_64-darwin";
}