nixpkgs/nixos/modules/hardware/new-lg4ff.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
738 B
Nix
Raw Normal View History

2022-05-27 15:00:06 +00:00
{ pkgs, lib, config, ... }:
with lib;
let
cfg = config.hardware.new-lg4ff;
2022-06-02 06:27:42 +00:00
kernelPackages = config.boot.kernelPackages;
2022-05-27 15:00:06 +00:00
in {
options.hardware.new-lg4ff = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
Enables improved Linux module drivers for Logitech driving wheels.
This will replace the existing in-kernel hid-logitech modules.
Works most notably on the Logitech G25, G27, G29 and Driving Force (GT).
'';
};
};
2022-06-01 21:07:24 +00:00
config = lib.mkIf cfg.enable {
2022-05-27 15:00:06 +00:00
boot = {
2022-06-02 06:27:42 +00:00
extraModulePackages = [ kernelPackages.new-lg4ff ];
2022-05-27 15:00:06 +00:00
kernelModules = [ "hid-logitech-new" ];
};
};
meta.maintainers = with lib.maintainers; [ matthiasbenaets ];
}