2020-04-24 23:36:52 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
hardware.sensor.iio = {
|
|
|
|
enable = mkOption {
|
|
|
|
description = ''
|
2021-07-24 12:14:16 +00:00
|
|
|
Enable this option to support IIO sensors with iio-sensor-proxy.
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
IIO sensors are used for orientation and ambient light
|
|
|
|
sensors on some mobile devices.
|
|
|
|
'';
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|