summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Anderson <dave@natulte.net>2020-03-14 20:01:14 -0700
committerAlyssa Ross <hi@alyssa.is>2020-04-01 18:37:52 +0000
commitd2bb8d232b4d2691fdb8052e5c395fa282998254 (patch)
tree0577ef42ef41dbcb49bef5bf4904eb00d3a9326c
parent79e768eeb4997efe93e94c6cc9f71ccd52433179 (diff)
downloadnixpkgs-d2bb8d232b4d2691fdb8052e5c395fa282998254.tar
nixpkgs-d2bb8d232b4d2691fdb8052e5c395fa282998254.tar.gz
nixpkgs-d2bb8d232b4d2691fdb8052e5c395fa282998254.tar.bz2
nixpkgs-d2bb8d232b4d2691fdb8052e5c395fa282998254.tar.lz
nixpkgs-d2bb8d232b4d2691fdb8052e5c395fa282998254.tar.xz
nixpkgs-d2bb8d232b4d2691fdb8052e5c395fa282998254.tar.zst
nixpkgs-d2bb8d232b4d2691fdb8052e5c395fa282998254.zip
nixos/iio: explain why you might want IIO sensor support.
Signed-off-by: David Anderson <dave@natulte.net>
-rw-r--r--nixos/modules/hardware/sensor/iio.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/modules/hardware/sensor/iio.nix b/nixos/modules/hardware/sensor/iio.nix
index a8bc1880002..86fc196a18a 100644
--- a/nixos/modules/hardware/sensor/iio.nix
+++ b/nixos/modules/hardware/sensor/iio.nix
@@ -8,7 +8,11 @@ with lib;
   options = {
     hardware.sensor.iio = {
       enable = mkOption {
-        description = "Enable this option to support IIO sensors.";
+        description = ''
+          Enable this option to support IIO sensors.
+
+          IIO sensors are used for orientation and ambient light
+          sensors on some mobile devices.'';
         type = types.bool;
         default = false;
       };