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

19 lines
400 B
Nix
Raw Normal View History

2024-08-07 21:25:21 +02:00
{config, ... }:
2024-06-21 23:25:17 +02:00
{
systemd.network.enable = true;
2024-08-07 21:25:21 +02:00
systemd.network.networks."10-hetzner" = {
2024-08-07 20:33:07 +02:00
matchConfig.Name = "e*";
2024-06-21 23:25:17 +02:00
networkConfig.DHCP = "ipv4";
linkConfig.RequiredForOnline = "routable";
};
2024-08-07 21:25:21 +02:00
boot.initrd.systemd.network.networks."10-hetzner" = config.systemd.network.networks."10-hetzner";
2024-06-21 23:25:17 +02:00
boot.loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
};
2024-08-07 21:25:21 +02:00
2024-06-21 23:25:17 +02:00
}