nixos-config/modules/hardware/mobile.nix

11 lines
205 B
Nix
Raw Normal View History

2021-07-29 20:21:51 +00:00
{ pkgs, ... }:
# Special options for mobile devices
{
# Battery savings
2021-07-30 08:29:39 +00:00
#services.tlp.enable = true;
2021-07-29 20:21:51 +00:00
# TODO: Maybe move this out of here
environment.systemPackages = [ pkgs.iio-sensor-proxy ];
}