nixos-config/machines/probe/hardware-configuration/hetzner.nix

13 lines
289 B
Nix
Raw Normal View History

2024-06-21 23:25:17 +02:00
{
systemd.network.enable = true;
systemd.network.networks."10-private-hetzner" = {
matchConfig.Name = "en*";
networkConfig.DHCP = "ipv4";
linkConfig.RequiredForOnline = "routable";
};
boot.loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
};
}