about summary refs log tree commit diff stats
path: root/system/locale/default.nix
blob: e93066be4d906514daf1c7b4dbb84609cb058471 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# vim: ts=2
{
  config,
  pkgs,
  ...
}: {
  # Set your time zone.
  time.timeZone = "Europe/Berlin";

  # Select internationalisation properties.
  i18n = {
    defaultLocale = "en_CA.UTF-8";
    extraLocaleSettings = {
      LANGUAGE="en_CA:en_US:en";
      LC_TIME = "en_DK.UTF-8";
      LC_COLLATE = "C.UTF-8";
    };
  };

  # Layout
  console = {
    keyMap = "dvorak-programmer";
  };
}