summaryrefslogtreecommitdiff
path: root/hosts/common/locale.nix
blob: 3e28cfd33848843f775d71633ffcd671741c1614 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
_: {
  i18n = {
    defaultLocale = "en_US.UTF-8";
    extraLocaleSettings = {
      LC_MESSAGES = "en_US.UTF-8";
      LC_TIME = "en_US.UTF-8";
    };
  };

  time = {
    timeZone = "America/New_York";
  };
}