about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-13 14:24:20 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-13 14:24:20 -0800
commit434c678f5d241c72847c99e93b0dfcea5993b838 (patch)
tree3675f3ad47884b2b8c7c7478497b53b71ed07404
parenthosts: unlock disks remotely on boot (diff)
downloadworld-434c678f5d241c72847c99e93b0dfcea5993b838.tar.gz
hosts: load igb kernel module for initrd
We need to load the driver for the NIC.
-rw-r--r--hosts/carmel/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/hosts/carmel/default.nix b/hosts/carmel/default.nix
index 1413f1f..0856337 100644
--- a/hosts/carmel/default.nix
+++ b/hosts/carmel/default.nix
@@ -15,6 +15,7 @@
 
   boot.initrd = {
     luks.devices."system".allowDiscards = true;
+    kernelModules = [ "igb" ];
   };
 
   boot.kernelParams = [ "ip=dhcp" ];