about summary refs log tree commit diff
path: root/hosts/common/system/locale.nix
blob: 53174e39476977301c10d770ab901e6e38474d89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, ... }:

{
  # Select internationalisation properties.
  i18n.defaultLocale = "en_US.UTF-8";

  time.timeZone = "America/Los_Angeles";

  location.latitude = 37.8715;
  location.longitude = -122.2730;
  location.provider = "manual";
}