1ad7e562b0
Change-Id: I9ae66d54cc557e0f4dec7bd3b38022274b16263f Reviewed-on: https://cl.tvl.fyi/c/depot/+/7169 Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
15 lines
338 B
Nix
15 lines
338 B
Nix
# Configuration specifically for laptops that move around.
|
|
{ ... }:
|
|
|
|
{
|
|
time.timeZone = "Europe/Stockholm";
|
|
|
|
# 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;
|
|
}
|