diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-02-13 14:24:20 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-02-13 14:24:20 -0800 |
| commit | 434c678f5d241c72847c99e93b0dfcea5993b838 (patch) | |
| tree | 3675f3ad47884b2b8c7c7478497b53b71ed07404 | |
| parent | hosts: unlock disks remotely on boot (diff) | |
| download | infra-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.nix | 1 |
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" ]; |
