summary refs log tree commit diff
path: root/nixos/modules/hardware/xone.nix
blob: 89690d8c6fb1053b1f1cd1c0dcbef5e25afa33d6 (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
{ config, lib, pkgs, ... }:

with lib;
let
  cfg = config.hardware.xone;
in
{
  options.hardware.xone = {
    enable = mkEnableOption "the xone driver for Xbox One and Xbobx Series X|S accessories";
  };

  config = mkIf cfg.enable {
    boot = {
      blacklistedKernelModules = [ "xpad" "mt76x2u" ];
      extraModulePackages = with config.boot.kernelPackages; [ xone ];
    };
    hardware.firmware = [ pkgs.xow_dongle-firmware ];
  };

  meta = {
    maintainers = with maintainers; [ rhysmdnz ];
  };
}