about summary refs log tree commit diff
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-07-24 23:56:31 +0200
committerGitHub <noreply@github.com>2023-07-24 23:56:31 +0200
commitdfcffbd74fd6f0419370d8240e445252a39f4d10 (patch)
tree03bc1746a915b4dadeded9d2657b2a495de22fe3 /nixos/modules/hardware
parenta5caad990201ba3a92d08aa61401b56d6920c486 (diff)
parent12ad49a130d7f7be7b832fddce93d37ee4460ddb (diff)
Merge pull request #225055 from jtrees/update-wooting-udev-rules
wooting: update udev rules
Diffstat (limited to 'nixos/modules/hardware')
-rw-r--r--nixos/modules/hardware/wooting.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/hardware/wooting.nix b/nixos/modules/hardware/wooting.nix
index 90d046d49f4e3..78bbcb61aca7b 100644
--- a/nixos/modules/hardware/wooting.nix
+++ b/nixos/modules/hardware/wooting.nix
@@ -2,8 +2,8 @@
 
 with lib;
 {
-  options.hardware.wooting.enable =
-    mkEnableOption (lib.mdDoc "support for Wooting keyboards");
+  options.hardware.wooting.enable = mkEnableOption (lib.mdDoc ''support for Wooting keyboards.
+    Note that users must be in the "input" group for udev rules to apply'');
 
   config = mkIf config.hardware.wooting.enable {
     environment.systemPackages = [ pkgs.wootility ];