nixos-config/modules/hardware/mobile.nix

11 lines
204 B
Nix

{ pkgs, ... }:
# Special options for mobile devices
{
# Battery savings
services.tlp.enable = true;
# TODO: Maybe move this out of here
environment.systemPackages = [ pkgs.iio-sensor-proxy ];
}