Remove the unnecessary network config options.

Turns out my router advertises enough to do the right thing without
this.
This commit is contained in:
Eli Ribble 2024-08-16 16:35:49 -07:00
parent 67cee9d1f3
commit 5e9e93361a
1 changed files with 0 additions and 16 deletions

View File

@ -252,10 +252,6 @@
systemd.network.networks."10-wan" = {
matchConfig.Name = "enp2s0";
networkConfig = {
Address = [
"fc00::/64"
"2600:8800:2740:16::1/64"
];
# start a DHCP Client for IPv4 Addressing/Routing
DHCP = "ipv4";
# accept Router Advertisements for Stateless IPv6 Autoconfiguraton (SLAAC)
@ -263,18 +259,6 @@
};
# make routing on this interface a dependency for network-online.target
linkConfig.RequiredForOnline = "routable";
addresses = [{
addressConfig = {
Address = "::/0";
Scope = "global";
};
}
{
addressConfig = {
Address = "fc00::/64";
Scope = "local";
};
}];
};
systemd.services.scan-uploader = {