{ lib, ... }: { imports = [ ./wireguard.nix ]; services.resolved = { enable = true; domains = [ "~." ]; fallbackDns = [ ]; }; systemd = { network = { enable = true; wait-online = { enable = true; anyInterface = true; }; networks = { "20-virbr" = { matchConfig = { Name = "virbr*"; Type = "bridge"; }; linkConfig = { Unmanaged = true; }; }; "21-docker" = { matchConfig = { Name = "docker*"; Type = "bridge"; }; linkConfig = { Unmanaged = true; }; }; "22-veth" = { matchConfig = { Name = "veth*"; Type = "ether"; }; linkConfig = { Unmanaged = true; }; }; "23-vnet" = { matchConfig = { Name = "vnet*"; Type = "ether"; }; linkConfig = { Unmanaged = true; }; }; "40-ether" = { enable = true; matchConfig = { Type = "ether"; }; networkConfig = { DHCP = "yes"; }; dhcpV4Config = { UseDomains = true; RouteMetric = 100; }; ipv6AcceptRAConfig = { RouteMetric = 100; }; }; "40-wireless" = { enable = true; matchConfig = { Type = "wlan"; }; networkConfig = { DHCP = "yes"; IgnoreCarrierLoss = "3s"; }; dhcpV4Config = { UseDomains = true; RouteMetric = 600; }; ipv6AcceptRAConfig = { RouteMetric = 600; }; linkConfig = { RequiredForOnline = "routable"; }; }; }; }; }; networking = { nameservers = [ "10.10.10.1" ]; useDHCP = lib.mkDefault false; extraHosts = '' 10.10.10.1 Bifrost 10.10.10.2 Skipper 10.10.10.10 Rico0 10.10.10.11 Rico1 10.10.10.12 Rico2 10.10.10.13 Wynne 10.10.10.14 Layne ''; firewall = { allowedTCPPorts = [ 41414 #Torrent 53317 #LocalSend ]; allowedUDPPorts = [ 6771 #Torrent 41414 #Torrent 53317 #LocalSend ]; }; wireless.iwd = { enable = true; settings = { General = { AddressRandomization = "network"; EnableNetworkConfiguration = false; }; Settings = { AutoConnect = "yes"; }; }; }; }; }