summary refs log tree commit diff
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
authorJoshua Trees <me@jtrees.io>2023-07-04 21:28:49 +0200
committerJoshua Trees <me@jtrees.io>2023-07-24 22:34:52 +0200
commit12ad49a130d7f7be7b832fddce93d37ee4460ddb (patch)
tree17bed2444dfaa37956be05ac8ab266dd4bbba0ff /nixos/modules/hardware
parent519d8cf92da9b6a2aec0205b3428982512868b15 (diff)
downloadnixpkgs-12ad49a130d7f7be7b832fddce93d37ee4460ddb.tar
nixpkgs-12ad49a130d7f7be7b832fddce93d37ee4460ddb.tar.gz
nixpkgs-12ad49a130d7f7be7b832fddce93d37ee4460ddb.tar.bz2
nixpkgs-12ad49a130d7f7be7b832fddce93d37ee4460ddb.tar.lz
nixpkgs-12ad49a130d7f7be7b832fddce93d37ee4460ddb.tar.xz
nixpkgs-12ad49a130d7f7be7b832fddce93d37ee4460ddb.tar.zst
nixpkgs-12ad49a130d7f7be7b832fddce93d37ee4460ddb.zip
wooting: clarify requirements for hardware option to work
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 90d046d49f4..78bbcb61aca 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 ];