Disable bluetooth and wifi on Raspberry Pi 4

This commit is contained in:
Andreas Zweili 2024-03-06 18:02:32 +01:00
parent e84098db10
commit 45d322771f
1 changed files with 9 additions and 0 deletions

View File

@ -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;