infra/hosts/nachtigall/networking.nix
teutat3s 6ea916603c
All checks were successful
Flake checks / Check (pull_request) Successful in 4m0s
networking: set networking.domain in core module
2024-06-06 19:30:11 +02:00

32 lines
624 B
Nix

{
config,
pkgs,
flake,
...
}:
{
networking.hostName = "nachtigall";
networking.hostId = "00000001";
# Network (Hetzner uses static IP assignments, and we don't use DHCP here)
networking.useDHCP = false;
networking.interfaces."enp35s0".ipv4.addresses = [
{
address = "138.201.80.102";
prefixLength = 26;
}
];
networking.interfaces."enp35s0".ipv6.addresses = [
{
address = "2a01:4f8:172:1c25::1";
prefixLength = 64;
}
];
networking.defaultGateway = "138.201.80.65";
networking.defaultGateway6 = {
address = "fe80::1";
interface = "enp35s0";
};
}