e4a046bacd
Change-Id: I966e48a846a101f01a78ed9245f4bb45bc905695 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7455 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: tazjin <tazjin@tvl.su>
15 lines
335 B
Nix
15 lines
335 B
Nix
# Configuration specifically for laptops that move around.
|
|
{ ... }:
|
|
|
|
{
|
|
time.timeZone = "Europe/Moscow";
|
|
|
|
# Automatically detect location for redshift & so on ...
|
|
services.geoclue2.enable = true;
|
|
location.provider = "geoclue2";
|
|
|
|
# Enable power-saving features.
|
|
services.tlp.enable = true;
|
|
|
|
programs.light.enable = true;
|
|
}
|