nixos/hid-fanatecff: init module
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
{ lib, config, ... }:
|
||||
|
||||
let
|
||||
cfg = config.hardware.hid-fanatecff;
|
||||
inherit (config.boot.kernelPackages) hid-fanatecff;
|
||||
inherit (lib) maintainers mkEnableOption mkIf;
|
||||
in
|
||||
{
|
||||
options.hardware.hid-fanatecff = {
|
||||
enable = mkEnableOption "hid-fanatecff, a Linux kernel driver that aims to add support for Fanatec devices";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
boot.extraModulePackages = [ hid-fanatecff ];
|
||||
services.udev.packages = [ hid-fanatecff ];
|
||||
};
|
||||
|
||||
meta.maintainers = with maintainers; [ rake5k ];
|
||||
}
|
||||
@@ -73,6 +73,7 @@
|
||||
./hardware/gpgsmartcards.nix
|
||||
./hardware/graphics.nix
|
||||
./hardware/hackrf.nix
|
||||
./hardware/hid-fanatecff.nix
|
||||
./hardware/i2c.nix
|
||||
./hardware/infiniband.nix
|
||||
./hardware/inputmodule.nix
|
||||
|
||||
Reference in New Issue
Block a user