forked from CCCHH/nix-infra
21 lines
439 B
Nix
21 lines
439 B
Nix
{ ... }:
|
|
|
|
{
|
|
networking.interfaces.net0 = {
|
|
ipv4.addresses = [
|
|
{
|
|
address = "212.12.51.136";
|
|
prefixLength = 28;
|
|
}
|
|
];
|
|
};
|
|
networking.defaultGateway = "212.12.51.129";
|
|
networking.nameservers = [ "212.12.50.158" "192.76.134.90" ];
|
|
networking.search = [ "hamburg.ccc.de" ];
|
|
|
|
systemd.network.links."10-net0" = {
|
|
matchConfig.MACAddress = "92:7B:E6:12:A4:FA";
|
|
linkConfig.Name = "net0";
|
|
};
|
|
}
|