2022-05-18 14:49:53 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.hardware.keyboard.uhk;
|
2023-03-04 12:14:45 +00:00
|
|
|
inherit (lib) mdDoc mkEnableOption mkIf;
|
|
|
|
|
2022-05-18 14:49:53 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
options.hardware.keyboard.uhk = {
|
2023-03-04 12:14:45 +00:00
|
|
|
enable = mkEnableOption (mdDoc ''
|
|
|
|
non-root access to the firmware of UHK keyboards.
|
2022-05-18 14:49:53 +00:00
|
|
|
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.
|
2022-09-09 14:08:57 +00:00
|
|
|
'');
|
2022-05-18 14:49:53 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.udev.packages = [ pkgs.uhk-udev-rules ];
|
|
|
|
};
|
|
|
|
}
|