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

with lib;
let
  cfg = config.hardware.keyboard.uhk;
in
{
  options.hardware.keyboard.uhk = {
    enable = mkEnableOption (lib.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 ];
  };
}