bluetooth fixes (dontsn't work)

This commit is contained in:
Tao Tien 2025-11-30 18:48:32 -08:00
parent ed1ae5cadc
commit 7e0c4b36ed

View file

@ -173,7 +173,14 @@
boot.loader.timeout = lib.mkForce 1; boot.loader.timeout = lib.mkForce 1;
# boot.supportedFilesystems = ["ntfs" "btrfs"]; # boot.supportedFilesystems = ["ntfs" "btrfs"];
hardware.enableAllFirmware = true; hardware.enableAllFirmware = true;
hardware.bluetooth.enable = lib.mkDefault true; hardware.bluetooth = {
enable = lib.mkDefault true;
settings.General = {
# ControllerMode = "bredr"; # Fix frequent Bluetooth audio dropouts
Experimental = true;
FastConnectable = true;
};
};
# hardware.bluetooth.settings.General.Experimental = true; # hardware.bluetooth.settings.General.Experimental = true;
imports = [(modulesPath + "/installer/scan/not-detected.nix")]; imports = [(modulesPath + "/installer/scan/not-detected.nix")];