File tree Expand file tree Collapse file tree 4 files changed +26
-6
lines changed Expand file tree Collapse file tree 4 files changed +26
-6
lines changed Original file line number Diff line number Diff line change 47
47
48
48
networking . hostName = "matrix" ;
49
49
systemd . network . networks = {
50
- "10-wan" . matchConfig . MACAddress = "96:00:02:23:cd:a5" ;
50
+ "10-wan" = {
51
+ matchConfig . MACAddress = "96:00:02:23:cd:a5" ;
52
+ address = [ "2a01:4ff:f0:ec8::1/64" ] ;
53
+ } ;
51
54
"10-nevarronet" . matchConfig . MACAddress = "86:00:00:44:d6:83" ;
52
55
} ;
53
56
Original file line number Diff line number Diff line change 14
14
15
15
networking . hostName = "mineshspc" ;
16
16
systemd . network . networks = {
17
- "10-wan" . matchConfig . MACAddress = "96:00:01:f3:c7:74" ;
18
- "10-nevarronet" . matchConfig . MACAddress = "86:00:00:3a:eb:6a" ;
17
+ "10-wan" = {
18
+ matchConfig . MACAddress = "96:00:01:f3:c7:74" ;
19
+ address = [ "2a01:4ff:f0:abdd::1/64" ] ;
20
+ } ;
21
+ "10-nevarronet" = { matchConfig . MACAddress = "86:00:00:3a:eb:6a" ; } ;
19
22
} ;
20
23
21
24
services . nginx = {
Original file line number Diff line number Diff line change 6
6
7
7
networking . hostName = "monitoring" ;
8
8
systemd . network . networks = {
9
- "10-wan" . matchConfig . MACAddress = "96:00:02:1f:07:ec" ;
9
+ "10-wan" = {
10
+ matchConfig . MACAddress = "96:00:02:1f:07:ec" ;
11
+ address = [ "2a01:4ff:f0:9b5d::1/64" ] ;
12
+ } ;
10
13
"10-nevarronet" . matchConfig . MACAddress = "86:00:00:43:8c:62" ;
11
14
} ;
12
15
Original file line number Diff line number Diff line change 4
4
systemd . network = {
5
5
enable = true ;
6
6
networks = {
7
- "10-wan" . networkConfig . DHCP = "ipv4" ;
8
- "10-nevarronet" . networkConfig . DHCP = "ipv4" ;
7
+ "10-wan" = {
8
+ networkConfig = {
9
+ DHCP = "yes" ;
10
+ IPv6AcceptRA = true ;
11
+ } ;
12
+ routes = [ { routeConfig . Gateway = "fe80::1" ; } ] ;
13
+ } ;
14
+ "10-nevarronet" = {
15
+ networkConfig = {
16
+ DHCP = "yes" ;
17
+ IPv6AcceptRA = true ;
18
+ } ;
19
+ } ;
9
20
} ;
10
21
} ;
11
22
You can’t perform that action at this time.
0 commit comments