From a253a51ef8412709f0113e5d96ad21c88c7f1cac Mon Sep 17 00:00:00 2001 From: Steffen Illium Date: Sat, 14 Feb 2026 10:57:19 +0100 Subject: [PATCH] force bond gateway to rule over base --- network-bond.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network-bond.nix b/network-bond.nix index ec215f5..0863a08 100644 --- a/network-bond.nix +++ b/network-bond.nix @@ -3,7 +3,7 @@ { boot.kernelModules = [ "bonding" ]; - networking.defaultGateway.interface = "bond0"; + networking.defaultGateway.interface = lib.mkForce "bond0"; networking.bonds.bond0 = { interfaces = map (i: i.name) config.vars.interfaces;