mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 01:33:11 +01:00
26 lines
529 B
Nix
26 lines
529 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.hardware.keyboard.qmk;
|
|
inherit (lib) mkEnableOption mkIf;
|
|
in
|
|
{
|
|
options.hardware.keyboard.qmk = {
|
|
enable = mkEnableOption "non-root access to the firmware of QMK keyboards";
|
|
keychronSupport = mkEnableOption "udev rules for keychron QMK based keyboards";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.udev.packages = [
|
|
pkgs.qmk-udev-rules
|
|
]
|
|
++ lib.optionals cfg.keychronSupport [ pkgs.keychron-udev-rules ];
|
|
users.groups.plugdev = { };
|
|
};
|
|
}
|