dotfiles/modules/nixos/timezone.nix

16 lines
458 B
Nix
Raw Normal View History

{ ... }: {
2022-04-26 01:54:53 +00:00
# Service to determine location for time zone
services.geoclue2.enable = true;
2022-05-17 00:37:26 +00:00
services.geoclue2.enableWifi = false; # Breaks when it can't connect
location = { provider = "geoclue2"; };
2022-04-26 01:54:53 +00:00
# Enable local time based on time zone
2022-06-05 12:32:23 +00:00
services.localtimed.enable = true;
# Required to get localtimed to talk to geoclue2
services.geoclue2.appConfig.localtimed.isSystem = true;
services.geoclue2.appConfig.localtimed.isAllowed = true;
2022-04-26 01:54:53 +00:00
}