From 476b481fd7c06d060cbb3b316f9e151003f22b5d Mon Sep 17 00:00:00 2001 From: Colin Date: Sat, 14 Oct 2023 10:20:47 +0000 Subject: [PATCH] moby: dont ship the rtl8723cs *bluetooth* firmware it seems to conflict with Wake on Lan --- hosts/by-name/moby/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/by-name/moby/default.nix b/hosts/by-name/moby/default.nix index 377631f7..5058ba48 100644 --- a/hosts/by-name/moby/default.nix +++ b/hosts/by-name/moby/default.nix @@ -113,7 +113,14 @@ # ov5640_af.bin (camera module) # hardware.firmware = [ config.mobile.device.firmware ]; # hardware.firmware = [ pkgs.rtl8723cs-firmware ]; - hardware.firmware = [ pkgs.linux-firmware-megous ]; + hardware.firmware = [ + (pkgs.linux-firmware-megous.override { + # rtl_bt = false probably means no bluetooth connectivity. + # N.B.: DON'T RE-ENABLE without first confirming that wake-on-lan works during suspend (rtcwake). + # it seems the rtl_bt stuff ("bluetooth coexist") might make wake-on-LAN radically more flaky. + rtl_bt = false; + }) + ]; system.stateVersion = "21.11";