2016-07-27 15:37:39 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
hardware.sensor.iio = {
|
|
|
|
enable = mkOption {
|
2020-03-15 04:01:14 +01:00
|
|
|
description = ''
|
2021-07-23 03:01:54 +02:00
|
|
|
Enable this option to support IIO sensors with iio-sensor-proxy.
|
2020-03-15 04:01:14 +01:00
|
|
|
|
|
|
|
IIO sensors are used for orientation and ambient light
|
2020-04-01 19:56:22 +02:00
|
|
|
sensors on some mobile devices.
|
|
|
|
'';
|
2016-07-27 15:37:39 +02:00
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf config.hardware.sensor.iio.enable {
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "hid-sensor-hub" ];
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [ iio-sensor-proxy ];
|
|
|
|
|
|
|
|
services.dbus.packages = with pkgs; [ iio-sensor-proxy ];
|
|
|
|
services.udev.packages = with pkgs; [ iio-sensor-proxy ];
|
|
|
|
systemd.packages = with pkgs; [ iio-sensor-proxy ];
|
|
|
|
};
|
|
|
|
}
|