cloud: now on networkd
This commit is contained in:
parent
042084f055
commit
130192786f
1 changed files with 27 additions and 26 deletions
|
@ -1,33 +1,34 @@
|
||||||
{ lib, ... }: {
|
{ lib, ... }: {
|
||||||
# This file was populated at runtime with the networking
|
networking.dhcpcd.enable = false;
|
||||||
# details gathered from the active system.
|
|
||||||
networking = {
|
networking.useNetworkd = true;
|
||||||
nameservers = [ "2a01:4ff:ff00::add:1"
|
systemd.network.enable = true;
|
||||||
"2a01:4ff:ff00::add:2"
|
systemd.network = {
|
||||||
"185.12.64.1"
|
networks."30-uplink" = {
|
||||||
];
|
matchConfig.Name="enp1s0";
|
||||||
defaultGateway = "172.31.1.1";
|
networkConfig = {
|
||||||
defaultGateway6 = {
|
Address = [
|
||||||
address = "fe80::1";
|
"188.245.196.27/32"
|
||||||
interface = "eth0";
|
"2a01:4f8:c17:7f8a::1/64"
|
||||||
};
|
|
||||||
dhcpcd.enable = false;
|
|
||||||
usePredictableInterfaceNames = lib.mkForce false;
|
|
||||||
interfaces = {
|
|
||||||
eth0 = {
|
|
||||||
ipv4.addresses = [
|
|
||||||
{ address="188.245.196.27"; prefixLength=32; }
|
|
||||||
];
|
];
|
||||||
ipv6.addresses = [
|
DNS = [
|
||||||
{ address="2a01:4f8:c17:7f8a::1"; prefixLength=64; }
|
"2a01:4ff:ff00::add:1"
|
||||||
{ address="fe80::9400:3ff:fef6:132d"; prefixLength=64; }
|
"2a01:4ff:ff00::add:2"
|
||||||
|
"185.12.64.1"
|
||||||
];
|
];
|
||||||
ipv4.routes = [ { address = "172.31.1.1"; prefixLength = 32; } ];
|
|
||||||
ipv6.routes = [ { address = "fe80::1"; prefixLength = 128; } ];
|
|
||||||
};
|
};
|
||||||
|
routes = [
|
||||||
|
{
|
||||||
|
Gateway = "172.31.1.1";
|
||||||
|
GatewayOnLink = true;
|
||||||
|
Destination = "0.0.0.0/0";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
Gateway = "fe80::1";
|
||||||
|
GatewayOnLink = true;
|
||||||
|
Destination = "::/0";
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
services.udev.extraRules = ''
|
|
||||||
ATTR{address}=="96:00:03:f6:13:2d", NAME="eth0"
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue