summaryrefslogtreecommitdiff
path: root/profiles/nixos/locale.nix
blob: 45589ef10eeb901e2eaa4c9439fa16baa9e2466a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
_: {
  i18n = {
    supportedLocales = [
      "en_US.UTF-8/UTF-8"
    ];
    defaultLocale = "en_US.UTF-8";
  };

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