Skip to content

Commit 5c5d62c

Browse files
committed
feat: rename HAZE network to WIFI and update related configurations
1 parent e1c3487 commit 5c5d62c

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

hosts/nexus/config/router/dhcp.nix

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"enp2s0" # RUNE
3737
"enp3s0" # ZEBES
3838
"enp4s0" # NIMBUS
39-
"enp0s13f0u1" # HAZE (USB NIC)
39+
"enp0s13f0u1" # WIFI (USB NIC)
4040
"wg-vpn" # WireGuard VPN interface
4141
];
4242

@@ -57,8 +57,8 @@
5757
"10.3.3.100,10.3.3.250,12h"
5858
# NIMBUS network
5959
"10.2.2.100,10.2.2.250,12h"
60-
# HAZE network
61-
"10.19.89.100,10.19.89.250,12h"
60+
# WIFI network
61+
"10.10.10.100,10.10.10.250,12h"
6262
];
6363

6464
# Static DHCP reservations
@@ -72,9 +72,10 @@
7272
# NIMBUS network hosts
7373
"34:5A:60:58:1C:60,10.2.2.2,nimbus"
7474
"C8:53:09:F9:63:7F,10.2.2.4,norion"
75+
"74:56:3C:E7:F8:CD,10.2.2.13,haze"
7576

76-
# HAZE network hosts
77-
"74:56:3C:E7:F8:CD,10.19.89.13,haze"
77+
# WIFI network hosts
78+
"94:83:C4:76:50:F7,10.10.10.10,wifi"
7879
];
7980

8081
# Custom DNS entries
@@ -83,25 +84,25 @@
8384
"/router.ryot.local/10.4.4.1" # RUNE
8485
"/router.ryot.local/10.3.3.1" # ZEBES
8586
"/router.ryot.local/10.2.2.1" # NIMBUS
86-
"/router.ryot.local/10.19.89.1" # HAZE
87+
"/router.ryot.local/10.10.10.1" # WIFI
8788

8889
# AdGuard web UI
8990
"/adguard.ryot.foo/10.4.4.1" # RUNE
9091
"/adguard.ryot.foo/10.3.3.1" # ZEBES
9192
"/adguard.ryot.foo/10.2.2.1" # NIMBUS
92-
"/adguard.ryot.foo/10.19.89.1" # HAZE
93+
"/adguard.ryot.foo/10.10.10.1" # WIFI
9394

9495
# Pangolin web UI
9596
"/pangolin.ryot.foo/10.4.4.1" # RUNE
9697
"/pangolin.ryot.foo/10.3.3.1" # ZEBES
9798
"/pangolin.ryot.foo/10.2.2.1" # NIMBUS
98-
"/pangolin.ryot.foo/10.19.89.1" # HAZE
99+
"/pangolin.ryot.foo/10.10.10.1" # WIFI
99100

100101
# All *.ryot.foo domains via gerbil
101102
"/.ryot.foo/10.4.4.1" # RUNE
102103
"/.ryot.foo/10.3.3.1" # ZEBES
103104
"/.ryot.foo/10.2.2.1" # NIMBUS
104-
"/.ryot.foo/10.19.89.1" # HAZE
105+
"/.ryot.foo/10.10.10.1" # WIFI
105106

106107
# Direct local host access
107108
"/gerbil.ryot.local/10.1.1.11"

hosts/nexus/config/router/networking.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@
8989
];
9090
};
9191

92-
## HAZE ## (10.19.89.0/24) - USB NIC
92+
## WIFI ## (10.10.10.0/24) - USB NIC
9393
enp0s13f0u1 = {
9494
ipv4.addresses = [
9595
{
96-
address = "10.19.89.1";
96+
address = "10.10.10.1";
9797
prefixLength = 24;
9898
}
9999
];

hosts/nexus/config/router/router.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"enp2s0" # RUNE
1313
"enp3s0" # ZEBES
1414
"enp4s0" # NIMBUS
15-
"enp0s13f0u1" # HAZE (USB NIC)
15+
"enp0s13f0u1" # WIFI (USB NIC)
1616
"wg-+" # WireGuard VPN interface
1717
"br-+" # All Docker bridge networks (br-*)
1818
];

mix/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
# ── x86 Desktops ──
9191
haze = {
9292
user = "cesar";
93-
ip = "10.19.89.13";
93+
ip = "10.2.2.13";
9494
desktop = {
9595
gnome = {
9696
enable = true;

modules/hosts/common/vpn.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ let
3232
"10.2.2.0/24" # NIMBUS network
3333
"10.3.3.0/24" # ZEBES network
3434
"10.4.4.0/24" # RUNE network
35-
"10.19.89.0/24" # HAZE network
35+
"10.10.10.0/24" # WIFI network
3636
];
3737
in
3838
{

0 commit comments

Comments
 (0)