dotfiles/modules/system/timezone.nix

15 lines
254 B
Nix
Raw Normal View History

2022-04-26 01:54:53 +00:00
{ config, ... }:
{
config = {
# Service to determine location for time zone
services.geoclue2.enable = true;
location = { provider = "geoclue2"; };
# Enable local time based on time zone
services.localtime.enable = true;
};
}