mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
15 lines
254 B
Nix
15 lines
254 B
Nix
{ 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;
|
|
|
|
};
|
|
}
|