tvl-depot/users/tazjin/nixos/modules/laptop.nix

16 lines
338 B
Nix
Raw Normal View History

# 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;
}