mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
33 lines
820 B
Nix
33 lines
820 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
###### interface
|
|
|
|
options = {
|
|
hardware.sensor.iio = {
|
|
enable = lib.mkOption {
|
|
description = ''
|
|
Enable this option to support IIO sensors with iio-sensor-proxy.
|
|
|
|
IIO sensors are used for orientation and ambient light
|
|
sensors on some mobile devices.
|
|
'';
|
|
type = lib.types.bool;
|
|
default = false;
|
|
};
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = lib.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 ];
|
|
};
|
|
}
|