swap qemu network interfaces around
lan and wan were backwards, it looks like
This commit is contained in:
parent
7ad848cb77
commit
d3dc9752f8
1 changed files with 2 additions and 2 deletions
|
@ -54,8 +54,8 @@
|
||||||
networkInterfaces =
|
networkInterfaces =
|
||||||
let inherit (config.system.service.network) link;
|
let inherit (config.system.service.network) link;
|
||||||
in {
|
in {
|
||||||
lan = link.build { ifname = "eth0"; };
|
wan = link.build { ifname = "eth0"; };
|
||||||
wan = link.build { ifname = "eth1"; };
|
lan = link.build { ifname = "eth1"; };
|
||||||
|
|
||||||
wlan_24 = link.build {
|
wlan_24 = link.build {
|
||||||
ifname = "wlan0";
|
ifname = "wlan0";
|
||||||
|
|
Loading…
Reference in a new issue