2022-05-18 14:49:53 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.hardware.keyboard.uhk;
|
2024-04-21 15:54:59 +00:00
|
|
|
inherit (lib) mkEnableOption mkIf;
|
2023-03-04 12:14:45 +00:00
|
|
|
|
2022-05-18 14:49:53 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
options.hardware.keyboard.uhk = {
|
2024-04-21 15:54:59 +00:00
|
|
|
enable = mkEnableOption ''
|
2023-03-04 12:14:45 +00:00
|
|
|
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.
|
2023-11-16 04:20:00 +00:00
|
|
|
You may want to install the uhk-agent package
|
2024-04-21 15:54:59 +00:00
|
|
|
'';
|
2022-05-18 14:49:53 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.udev.packages = [ pkgs.uhk-udev-rules ];
|
|
|
|
};
|
|
|
|
}
|