diff options
author | Alan Pearce | 2024-05-31 00:25:10 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-31 00:25:10 +0200 |
commit | b52444517ce8f5e9b28838aa10f4ddc3fc014dda (patch) | |
tree | 8c5d84c43eda93ace323f5a10aec2f1e0da9b421 | |
parent | 754c82e8f28a79402135a8442ed689633d433c7e (diff) | |
download | nixfiles-b52444517ce8f5e9b28838aa10f4ddc3fc014dda.tar.lz nixfiles-b52444517ce8f5e9b28838aa10f4ddc3fc014dda.tar.zst nixfiles-b52444517ce8f5e9b28838aa10f4ddc3fc014dda.zip |
nanopi: remove duplicate default route
-rwxr-xr-x | system/nanopi.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/nanopi.nix b/system/nanopi.nix index a37a1c4b..19793909 100755 --- a/system/nanopi.nix +++ b/system/nanopi.nix @@ -319,13 +319,14 @@ in dhcpV4Config = { UseDNS = false; SendHostname = false; - RouteMetric = 2048; + UseRoutes = false; }; ipv6AcceptRAConfig.UseDNS = false; routes = [ { routeConfig = { Gateway = "_dhcp4"; + Metric = 2048; QuickAck = true; InitialCongestionWindow = 30; InitialAdvertisedReceiveWindow = 30; |