This commit is contained in:
root 2025-11-02 15:04:04 +00:00
parent d4bea4c7c5
commit 29cbf8b2d8
9 changed files with 124 additions and 55 deletions

55
system/networking.nix Normal file
View file

@ -0,0 +1,55 @@
{lib, ...}: {
# This file was populated at runtime with the networking
# details gathered from the active system.
networking = {
nameservers = [
"213.136.95.10"
"213.136.95.11"
"2a02:c207::1"
"8.8.8.8"
];
defaultGateway = "157.173.112.1";
defaultGateway6 = {
address = "fe80::1";
interface = "eth0";
};
dhcpcd.enable = false;
usePredictableInterfaceNames = lib.mkForce false;
interfaces = {
eth0 = {
ipv4.addresses = [
{
address = "157.173.124.100";
prefixLength = 20;
}
];
ipv6.addresses = [
{
address = "2a02:c207:2288:2816::1";
prefixLength = 64;
}
{
address = "fe80::250:56ff:fe5d:f07e";
prefixLength = 64;
}
];
ipv4.routes = [
{
address = "157.173.112.1";
prefixLength = 32;
}
];
ipv6.routes = [
{
address = "fe80::1";
prefixLength = 128;
}
];
};
};
};
services.udev.extraRules = ''
ATTR{address}=="00:50:56:5d:f0:7e", NAME="eth0"
'';
}