nixos-config/machines/probe/hardware-configuration/hetzner.nix
2024-08-07 21:37:54 +02:00

13 lines
288 B
Nix

{
systemd.network.enable = true;
systemd.network.networks."10-private-hetzner" = {
matchConfig.Name = "e*";
networkConfig.DHCP = "ipv4";
linkConfig.RequiredForOnline = "routable";
};
boot.loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
};
}