NixOS/hardware/common.nix

13 lines
313 B
Nix
Raw Permalink Normal View History

2023-12-15 22:02:33 +00:00
{ pkgs, lib, ... }:
let
settings = import ./../settings.nix;
in
{
hardware.bluetooth.enable = settings.hardware.bluetooth;
# for rotation sensors
hardware.sensor.iio.enable = settings.hardware.iio;
# screen and keybord backlight
hardware.acpilight.enable = settings.hardware.acpilight;
}