dotfiles/modules/system/timezone.nix
Noah Masur 417623965e refactor arguments to options
also change theme to colorscheme
2022-05-05 23:02:01 -04:00

11 lines
217 B
Nix

{ ... }: {
# 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;
}