summary refs log tree commit diff
path: root/nixos/modules/hardware/xpadneo.nix
blob: a66e81d8b15bd0ecdf97f64c820309ed9457ce22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ config, lib, ... }:

with lib;
let
  cfg = config.hardware.xpadneo;
in
{
  options.hardware.xpadneo = {
    enable = mkEnableOption (lib.mdDoc "the xpadneo driver for Xbox One wireless controllers");
  };

  config = mkIf cfg.enable {
    boot = {
      # Must disable Enhanced Retransmission Mode to support bluetooth pairing
      # https://wiki.archlinux.org/index.php/Gamepad#Connect_Xbox_Wireless_Controller_with_Bluetooth
      extraModprobeConfig =
        mkIf
          (config.hardware.bluetooth.enable &&
            (lib.versionOlder config.boot.kernelPackages.kernel.version "5.12"))
          "options bluetooth disable_ertm=1";

      extraModulePackages = with config.boot.kernelPackages; [ xpadneo ];
      kernelModules = [ "hid_xpadneo" ];
    };
  };

  meta = {
    maintainers = with maintainers; [ kira-bruneau ];
  };
}