summaryrefslogtreecommitdiff
path: root/modules/nixos/common/locale.nix
blob: 752999627d3a73a5c0e07f34ffaadfa9a154d3fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{lib, ...}:
with lib; {
  i18n = {
    defaultLocale = mkDefault "en_GB.UTF-8";
    supportedLocales = [
      "C.UTF-8/UTF-8"
      "en_GB.UTF-8/UTF-8"
      "en_US.UTF-8/UTF-8"
      "ja_JP.UTF-8/UTF-8"
      "ru_RU.UTF-8/UTF-8"
    ];
  };

  services.xserver = {
    layout = concatStringsSep "," [
      "us"
      "ru"
    ];
    xkbVariant = concatStringsSep "," [
      ""
      "phonetic"
    ];
    xkbOptions = concatStringsSep "," [
      "terminate:ctrl_alt_bksp"
      "caps:escape"
      "compose:menu"
      "grp:win_space_toggle"
    ];
  };
}