a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
14 lines
344 B
Nix
14 lines
344 B
Nix
# Configuration specifically for laptops that move around.
|
|
{ ... }:
|
|
|
|
{
|
|
# Automatically detect location for redshift & timezone settings.
|
|
services.geoclue2.enable = true;
|
|
location.provider = "geoclue2";
|
|
services.localtime.enable = true;
|
|
|
|
# Enable power-saving features.
|
|
services.tlp.enable = true;
|
|
|
|
programs.light.enable = true;
|
|
}
|