diff --git a/modules/hardware/raspi4/raspi-base.nix b/modules/hardware/raspi4/raspi-base.nix index 52fc4a5..91a4dae 100644 --- a/modules/hardware/raspi4/raspi-base.nix +++ b/modules/hardware/raspi4/raspi-base.nix @@ -121,6 +121,15 @@ in systemd-boot.enable = true; }; }; + boot.blacklistedKernelModules = [ + "brcmfmac" # diable the wifi driver + "hci_uart" # disable the bluetooth driver + "btbcm" # disable the bluetooth driver + "btintel" # disable the bluetooth driver + "btqca" # disable the bluetooth driver + "btsdio" # disable the bluetooth driver + "bluetooth" # disable the bluetooth driver + ]; boot.extraModulePackages = [ ]; hardware.enableRedistributableFirmware = true;