about summary refs log tree commit diff
path: root/nixpkgs/nixos/modules/hardware/keyboard/uhk.nix
blob: ff984fa5daa6b2e1cb03f04c8af32c369e28cff4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ config, lib, pkgs, ... }:

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

in
{
  options.hardware.keyboard.uhk = {
    enable = mkEnableOption (mdDoc ''
      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 ];
  };
}