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

13 lines
289 B
Nix

{
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;
};
}