nixpkgs/nixos/modules/hardware/xone.nix
2024-08-30 22:59:24 +02:00

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 ];
};
}