mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
22 lines
508 B
Nix
22 lines
508 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.hardware.xone;
|
|
in
|
|
{
|
|
options.hardware.xone = {
|
|
enable = lib.mkEnableOption "the xone driver for Xbox One and Xbox Series X|S accessories";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
boot = {
|
|
blacklistedKernelModules = [ "xpad" "mt76x2u" ];
|
|
extraModulePackages = with config.boot.kernelPackages; [ xone ];
|
|
};
|
|
hardware.firmware = [ pkgs.xow_dongle-firmware ];
|
|
};
|
|
|
|
meta = {
|
|
maintainers = with lib.maintainers; [ rhysmdnz ];
|
|
};
|
|
}
|