summary refs log tree commit diff
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
author0x4A6F <0x4A6F@users.noreply.github.com>2021-12-09 21:03:35 +0100
committerGitHub <noreply@github.com>2021-12-09 21:03:35 +0100
commitc92ba86931d19e9d7920590deb58c3dacb55175d (patch)
tree13a9cd99011641646da9231db87b6e49f170e654 /nixos/modules/hardware
parenta0c37f06671a1b3cc9e4b4e6cafb8b61c9f3c7af (diff)
parent328cea4b5d646675f99aaa0a749b42c70483a5c9 (diff)
downloadnixpkgs-c92ba86931d19e9d7920590deb58c3dacb55175d.tar
nixpkgs-c92ba86931d19e9d7920590deb58c3dacb55175d.tar.gz
nixpkgs-c92ba86931d19e9d7920590deb58c3dacb55175d.tar.bz2
nixpkgs-c92ba86931d19e9d7920590deb58c3dacb55175d.tar.lz
nixpkgs-c92ba86931d19e9d7920590deb58c3dacb55175d.tar.xz
nixpkgs-c92ba86931d19e9d7920590deb58c3dacb55175d.tar.zst
nixpkgs-c92ba86931d19e9d7920590deb58c3dacb55175d.zip
Merge pull request #146605 from FlorianFranzen/zsa-udev
zsa-udev-rules: unstable-2020-12-16 -> 2.1.3
Diffstat (limited to 'nixos/modules/hardware')
-rw-r--r--nixos/modules/hardware/keyboard/zsa.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/nixos/modules/hardware/keyboard/zsa.nix b/nixos/modules/hardware/keyboard/zsa.nix
index 5cb09e5af49..bb69cfa0bf0 100644
--- a/nixos/modules/hardware/keyboard/zsa.nix
+++ b/nixos/modules/hardware/keyboard/zsa.nix
@@ -5,7 +5,6 @@ let
   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;
@@ -14,7 +13,6 @@ in
         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.
       '';
     };
@@ -22,6 +20,5 @@ in
 
   config = mkIf cfg.enable {
     services.udev.packages = [ pkgs.zsa-udev-rules ];
-    users.groups.plugdev = {};
   };
 }