From 393b1bbfb8ae3e91bea13f2a612895c86d702133 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sun, 7 Jan 2024 05:35:06 +0100 Subject: [PATCH] baremetal: add kernel modules for bonding --- modules/baremetal.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/baremetal.nix b/modules/baremetal.nix index 0d9f80b4..9730c0a6 100644 --- a/modules/baremetal.nix +++ b/modules/baremetal.nix @@ -16,8 +16,9 @@ boot = { initrd = { - # make sure to set availableKernelModules otherwise it won't work! + # make sure to set availableKernelModules to the kernel module used by the connected interface(s) otherwise things will not work! # the module can be found in a booted system by running `dmesg | rg "Link"` and looking at the first word after the date + availableKernelModules = [ "bridge" "bonding" "8021q" ]; network = { enable = true; ssh = {