diff options
author | makefu <github@syntax-fehler.de> | 2019-01-03 23:57:24 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2019-01-03 23:57:24 +0100 |
commit | d27dd90bb9d8231668aa4f1b89113231303722fe (patch) | |
tree | 195facc4a3a96cff0d174cb6f885856e2456262f /makefu | |
parent | 7d5937b734f8a6e8379e494f91049aeee63c3300 (diff) |
ma gum: set the default gateway on the correct interface
Diffstat (limited to 'makefu')
-rw-r--r-- | makefu/1systems/gum/hardware-config.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makefu/1systems/gum/hardware-config.nix b/makefu/1systems/gum/hardware-config.nix index e9670a5a4..542b79fe7 100644 --- a/makefu/1systems/gum/hardware-config.nix +++ b/makefu/1systems/gum/hardware-config.nix @@ -34,7 +34,7 @@ in { prefixLength = external-netmask6; }]; }; - defaultGateway6 = external-gw6; + defaultGateway6 = { address = external-gw6; interface = ext-if; }; defaultGateway = external-gw; }; boot.kernelParams = [ ]; |