summaryrefslogtreecommitdiffstats
path: root/nixos/modules/hardware/wooting.nix
blob: 2408c60fae16cf99e8aa3b4534ea626e5404dbe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  config,
  lib,
  pkgs,
  ...
}:
{
  options.hardware.wooting.enable = lib.mkEnableOption "support for Wooting keyboards";

  config = lib.mkIf config.hardware.wooting.enable {
    environment.systemPackages = [ pkgs.wootility ];
    services.udev.packages = [ pkgs.wooting-udev-rules ];
  };
}