14 lines
247 B
Nix
14 lines
247 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
networking.knownNetworkServices = [
|
||
|
"Ethernet"
|
||
|
"Wi-Fi"
|
||
|
"Thunderbolt Bridge"
|
||
|
"Thunderbolt Bridge 2"
|
||
|
"iPhone USB"
|
||
|
];
|
||
|
|
||
|
# The platform the configuration will be used on.
|
||
|
nixpkgs.hostPlatform = "x86_64-darwin";
|
||
|
}
|