Merge pull request #185068 from kira-bruneau/linuxPackages.xpadneo

nixos/xpadneo: don't disable ertm on kernel 5.12 or later
This commit is contained in:
Kira Bruneau 2022-08-09 18:54:37 -04:00 committed by GitHub
commit b739495304
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,8 @@ in
# https://wiki.archlinux.org/index.php/Gamepad#Connect_Xbox_Wireless_Controller_with_Bluetooth
extraModprobeConfig =
mkIf
config.hardware.bluetooth.enable
(config.hardware.bluetooth.enable &&
(lib.versionOlder config.boot.kernelPackages.kernel.version "5.12"))
"options bluetooth disable_ertm=1";
extraModulePackages = with config.boot.kernelPackages; [ xpadneo ];