dc56b365e6
It only sometimes works and that's not enough times. Change-Id: I11c1bc6e5c2eec4706bd935352188ffa83057c8f Reviewed-on: https://cl.tvl.fyi/c/depot/+/5869 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
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;
|
|
}
|