nixos-module/container/upstream/pppoe: fix disabling DHCP

This commit is contained in:
Astro 2022-08-05 22:24:09 +02:00
parent fa0869b110
commit d8dce5f6da
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ in lib.mkIf (pppoeInterfaces != {}) {
"${ifName}" = {
matchConfig.Name = "${ifName}";
networkConfig = {
DHCP = lib.mkOverride 900 "ipv6";
DHCP = lib.mkForce "ipv6";
# accept config set by pppd
KeepConfiguration = "yes";
};