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-03-14 20:01:14 -07:00 committed by Alyssa Ross
parent 79e768eeb4
commit d2bb8d232b

View file

@ -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;
};