diff options
author | davidak | 2020-06-21 00:41:09 +0200 |
---|---|---|
committer | davidak | 2020-12-26 09:56:34 +0100 |
commit | 0d0ff21f2f25021ab1661725579f3d5ca9a619d9 (patch) | |
tree | b949ac50cd0889503d5b01ba4082da2a3d66ebc4 /nixos/modules/hardware/keyboard | |
parent | 0e01df647b0e426206f7c81825ac54596256e0af (diff) |
nixos/zsa: init at unstable-2020-12-16
add support for ZSA keyboards Co-authored-by: Julien Debon <julien.debon@pm.me>
Diffstat (limited to 'nixos/modules/hardware/keyboard')
-rw-r--r-- | nixos/modules/hardware/keyboard/zsa.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/nixos/modules/hardware/keyboard/zsa.nix b/nixos/modules/hardware/keyboard/zsa.nix new file mode 100644 index 000000000000..5cb09e5af499 --- /dev/null +++ b/nixos/modules/hardware/keyboard/zsa.nix @@ -0,0 +1,27 @@ +{ config, lib, pkgs, ... }: + +let + inherit (lib) mkOption mkIf types; + cfg = config.hardware.keyboard.zsa; +in +{ + # TODO: make group configurable like in https://github.com/NixOS/nixpkgs/blob/0b2b4b8c4e729535a61db56468809c5c2d3d175c/pkgs/tools/security/nitrokey-app/udev-rules.nix ? + options.hardware.keyboard.zsa = { + enable = mkOption { + type = types.bool; + default = false; + description = '' + Enables udev rules for keyboards from ZSA like the ErgoDox EZ, Planck EZ and Moonlander Mark I. + You need it when you want to flash a new configuration on the keyboard + or use their live training in the browser. + Access to the keyboard is granted to users in the "plugdev" group. + You may want to install the wally-cli package. + ''; + }; + }; + + config = mkIf cfg.enable { + services.udev.packages = [ pkgs.zsa-udev-rules ]; + users.groups.plugdev = {}; + }; +} |