From db96d8840f95a4e57be0b2038bb1c5a9d27b5d22 Mon Sep 17 00:00:00 2001 From: MetaDark Date: Tue, 7 Jul 2020 01:15:23 -0400 Subject: nixos/xpadneo: init at 0.8.1 I just got an Xbox One controller and I wasn't satisfied with the xpad driver that ships with the Linux kernel xpadneo supports more features and fixes problems with incorrect button mappings https://atar-axis.github.io/xpadneo --- nixos/modules/hardware/xpadneo.nix | 29 +++++++++++++++++++++++++++++ nixos/modules/module-list.nix | 1 + 2 files changed, 30 insertions(+) create mode 100644 nixos/modules/hardware/xpadneo.nix (limited to 'nixos') diff --git a/nixos/modules/hardware/xpadneo.nix b/nixos/modules/hardware/xpadneo.nix new file mode 100644 index 0000000000000..d504697e61fd9 --- /dev/null +++ b/nixos/modules/hardware/xpadneo.nix @@ -0,0 +1,29 @@ +{ config, lib, ... }: + +with lib; +let + cfg = config.hardware.xpadneo; +in +{ + options.hardware.xpadneo = { + enable = mkEnableOption "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 + "options bluetooth disable_ertm=1"; + + extraModulePackages = with config.boot.kernelPackages; [ xpadneo ]; + kernelModules = [ "hid_xpadneo" ]; + }; + }; + + meta = { + maintainers = with maintainers; [ metadark ]; + }; +} diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 9e4e39371f4cb..2681a9d3a9e89 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -76,6 +76,7 @@ ./hardware/video/nvidia.nix ./hardware/video/uvcvideo/default.nix ./hardware/video/webcam/facetimehd.nix + ./hardware/xpadneo.nix ./i18n/input-method/default.nix ./i18n/input-method/fcitx.nix ./i18n/input-method/ibus.nix -- cgit 1.4.1