nixos/iio: explain why you might want IIO sensor support.

Signed-off-by: David Anderson <dave@natulte.net>
This commit is contained in:
David Anderson
2020-04-01 18:37:52 +00:00
committed by Alyssa Ross
parent 79e768eeb4
commit d2bb8d232b
+5 -1
View File
@@ -8,7 +8,11 @@ with lib;
options = { options = {
hardware.sensor.iio = { hardware.sensor.iio = {
enable = mkOption { 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; type = types.bool;
default = false; default = false;
}; };