From 86c99c2cbbf80550a0074878476523c8faf6a8ec Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Sun, 30 Jun 2024 03:38:48 +0100 Subject: [PATCH] nixos/build: Add Intel NIC drivers and increased timeout --- nixos/modules/build.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/modules/build.nix b/nixos/modules/build.nix index 6cb2973..a1b88df 100644 --- a/nixos/modules/build.nix +++ b/nixos/modules/build.nix @@ -54,6 +54,7 @@ let loader.grub.enable = false; initrd = { kernelModules = [ "nbd" ]; + availableKernelModules = [ "igb" "igc" ]; systemd = { storePaths = with pkgs; [ @@ -67,8 +68,8 @@ let nbd-client = "${nbd}/bin/nbd-client"; }; extraConfig = '' - DefaultTimeoutStartSec=10 - DefaultDeviceTimeoutSec=10 + DefaultTimeoutStartSec=20 + DefaultDeviceTimeoutSec=20 ''; network = {