1{ config, lib, pkgs, ... }:
2
3with lib;
4{
5 options.hardware.wooting.enable = mkEnableOption ''support for Wooting keyboards.
6 Note that users must be in the "input" group for udev rules to apply'';
7
8 config = mkIf config.hardware.wooting.enable {
9 environment.systemPackages = [ pkgs.wootility ];
10 services.udev.packages = [ pkgs.wooting-udev-rules ];
11 };
12}