mirror of
https://github.com/RGBCube/ncc
synced 2025-07-27 10:07:44 +00:00
14 lines
323 B
Nix
14 lines
323 B
Nix
{ config, lib, ... }: let
|
||
inherit (lib) head splitString;
|
||
in {
|
||
# Yeah, no DNSSEC or DoT or anything.
|
||
# That's what you get for using Darwin I guess.
|
||
networking.dns = config.dns.servers
|
||
|> map (splitString "#")
|
||
|> map head;
|
||
|
||
networking.knownNetworkServices = [
|
||
"Thunderbolt Bridge"
|
||
"Wi-Fi"
|
||
];
|
||
}
|