diff options
author | Karel Kočí <cynerd@email.cz> | 2023-01-09 10:28:10 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-01-09 10:28:10 +0100 |
commit | 3bee56880d262bf57eca092423a76f812465f210 (patch) | |
tree | 089a2102092c8807fe17ca51baf6122486eecec8 | |
parent | d5dc7479c489d17e6dcacf081c0f1b5242d99bd9 (diff) | |
download | nixos-personal-3bee56880d262bf57eca092423a76f812465f210.tar.gz nixos-personal-3bee56880d262bf57eca092423a76f812465f210.tar.bz2 nixos-personal-3bee56880d262bf57eca092423a76f812465f210.zip |
nixos: Omnia WAN is now named as end2
It seems like a bug as end* is used for switch end-points (I think). It
should be most likely named as wan.
-rw-r--r-- | nixos/machine/adm-omnia.nix | 2 | ||||
-rw-r--r-- | nixos/machine/adm-omnia2.nix | 2 | ||||
-rw-r--r-- | nixos/machine/spt-omnia.nix | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/nixos/machine/adm-omnia.nix b/nixos/machine/adm-omnia.nix index 4a41d4a..d158b45 100644 --- a/nixos/machine/adm-omnia.nix +++ b/nixos/machine/adm-omnia.nix @@ -40,7 +40,7 @@ with lib; { }; # TODO localhost nameservers = ["1.1.1.1" "8.8.8.8"]; - dhcpcd.allowInterfaces = ["eth2"]; + dhcpcd.allowInterfaces = ["end2"]; }; networking.wirelessAP = { diff --git a/nixos/machine/adm-omnia2.nix b/nixos/machine/adm-omnia2.nix index ac4433d..cf6de9f 100644 --- a/nixos/machine/adm-omnia2.nix +++ b/nixos/machine/adm-omnia2.nix @@ -10,7 +10,7 @@ with lib; { bridges = { brlan = { interfaces = [ - "eth2" + "end2" "lan0" "lan1" "lan2" diff --git a/nixos/machine/spt-omnia.nix b/nixos/machine/spt-omnia.nix index 8251b0b..6db1f7b 100644 --- a/nixos/machine/spt-omnia.nix +++ b/nixos/machine/spt-omnia.nix @@ -39,7 +39,7 @@ with lib; { }; }; nameservers = ["127.0.0.1" "1.1.1.1" "8.8.8.8"]; - dhcpcd.allowInterfaces = ["eth2"]; + dhcpcd.allowInterfaces = ["end2"]; }; services.syncthing = { |