blob: 6180dde952e0c36b55d4b840c67b82512dc9268f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{ lib, ... }: {
# This file was populated at runtime with the networking
# details gathered from the active system.
networking = {
nameservers = [
"67.207.67.2"
"67.207.67.3"
];
defaultGateway = "157.245.224.1";
defaultGateway6 = "2604:a880:2:d1::1";
dhcpcd.enable = false;
usePredictableInterfaceNames = lib.mkForce true;
interfaces = {
eth0 = {
ipv4.addresses = [
{ address="157.245.236.44"; prefixLength=20; }
{ address="10.46.0.5"; prefixLength=16; }
];
ipv6.addresses = [
{ address="2604:a880:2:d1::a2:5001"; prefixLength=64; }
{ address="fe80::7892:a5ff:fec6:dbc3"; prefixLength=64; }
];
ipv4.routes = [ { address = "157.245.224.1"; prefixLength = 32; } ];
ipv6.routes = [ { address = "2604:a880:2:d1::1"; prefixLength = 32; } ];
};
};
};
services.udev.extraRules = ''
ATTR{address}=="7a:92:a5:c6:db:c3", NAME="eth0"
'';
}
|