nixos/xpadneo: enable bluetooth (#483838)

This commit is contained in:
Kira Bruneau
2026-02-01 15:03:31 +00:00
committed by GitHub
+3 -5
View File
@@ -11,14 +11,12 @@ in
boot = {
# Must disable Enhanced Retransmission Mode to support bluetooth pairing
# https://wiki.archlinux.org/index.php/Gamepad#Connect_Xbox_Wireless_Controller_with_Bluetooth
extraModprobeConfig = lib.mkIf (
config.hardware.bluetooth.enable
&& (lib.versionOlder config.boot.kernelPackages.kernel.version "5.12")
) "options bluetooth disable_ertm=1";
extraModprobeConfig = lib.mkIf (lib.versionOlder config.boot.kernelPackages.kernel.version "5.12") "options bluetooth disable_ertm=1";
extraModulePackages = with config.boot.kernelPackages; [ xpadneo ];
kernelModules = [ "hid_xpadneo" ];
};
hardware.bluetooth.enable = true;
};
meta = {