snowflake/hosts/sora/networking.nix
notohh 1c4239269d
Some checks failed
ci/woodpecker/push/checks Pipeline failed
hosts: add hostnames to networking.nix
2024-01-27 13:48:13 -05:00

36 lines
719 B
Nix

{lib, ...}: {
networking = {
hostName = "sora";
nameservers = [
"9.9.9.9"
"149.112.112.112"
];
defaultGateway = "172.31.1.1";
defaultGateway6 = {
address = "";
interface = "eth0";
};
dhcpcd.enable = false;
usePredictableInterfaceNames = lib.mkForce false;
interfaces = {
eth0 = {
ipv4.addresses = [
{
address = "5.161.102.107";
prefixLength = 32;
}
];
ipv4.routes = [
{
address = "172.31.1.1";
prefixLength = 32;
}
];
};
};
};
services.udev.extraRules = ''
ATTR{address}=="96:00:02:c2:dc:83", NAME="eth0"
'';
}