summaryrefslogtreecommitdiffstats
path: root/nixos/modules/hardware/keyboard/uhk.nix
blob: 4332cefe3f9e79f5c5bb80b206d7dfaa08d14e37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  config,
  lib,
  pkgs,
  ...
}:

let
  cfg = config.hardware.keyboard.uhk;
  inherit (lib) mkEnableOption mkIf;

in
{
  options.hardware.keyboard.uhk = {
    enable = mkEnableOption ''
      non-root access to the firmware of UHK keyboards.
      You need it when you want to flash a new firmware on the keyboard.
      Access to the keyboard is granted to users in the "input" group.
      You may want to install the uhk-agent package
    '';

  };

  config = mkIf cfg.enable {
    services.udev.packages = [ pkgs.uhk-udev-rules ];
  };
}