aboutsummaryrefslogtreecommitdiffstats
path: root/nixos/localization.nix
blob: f05278b830219b41da6d31f502c55d4b85c4717e (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
{
  # locale
  i18n = {
    defaultLocale = "en_US.UTF-8";
    extraLocaleSettings = {
      LC_TIME = "el_GR.UTF-8";
      LC_MONETARY = "el_GR.UTF-8";
      LC_ADDRESS = "el_GR.UTF-8";
      LC_TELEPHONE = "el_GR.UTF-8";
      LC_MEASUREMENT = "el_GR.UTF-8";
    };
  };

  # console font and keyboard layout
  console = {
    useXkbConfig = true;
  };

  # X11 keyboard layout
  services.xserver.xkb = {
    layout = "us,gr";
    options = "grp:alt_shift_toggle,ctrl:nocaps,grp_led:caps,terminate:ctrl_alt_bksp";
  };
}