grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / hardware / xone.nix
blob4a8e692001e437b4475eef3cb340cf75c3a1daed
1 { config, lib, pkgs, ... }:
2 let
3   cfg = config.hardware.xone;
4 in
6   options.hardware.xone = {
7     enable = lib.mkEnableOption "the xone driver for Xbox One and Xbox Series X|S accessories";
8   };
10   config = lib.mkIf cfg.enable {
11     boot = {
12       blacklistedKernelModules = [ "xpad" "mt76x2u" ];
13       extraModulePackages = with config.boot.kernelPackages; [ xone ];
14     };
15     hardware.firmware = [ pkgs.xow_dongle-firmware ];
16   };
18   meta = {
19     maintainers = with lib.maintainers; [ rhysmdnz ];
20   };