blob: 2c900c2401780b32829f6c5d4e922db908acbfea (
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
31
32
|
{ config, pkgs, ... }:
{
# Set your time zone.
time.timeZone = "Europe/Berlin";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
# breaks tailscale ssh with constant
# "cannot change locale" messages when connecting.
# there may be a way to use these anyway...
# i18n.extraLocaleSettings = {
# LC_ADDRESS = "de_DE.UTF-8";
# LC_IDENTIFICATION = "de_DE.UTF-8";
# LC_MEASUREMENT = "de_DE.UTF-8";
# LC_MONETARY = "de_DE.UTF-8";
# LC_NAME = "de_DE.UTF-8";
# LC_NUMERIC = "de_DE.UTF-8";
# LC_PAPER = "de_DE.UTF-8";
# LC_TELEPHONE = "de_DE.UTF-8";
# LC_TIME = "de_DE.UTF-8";
# };
i18n.supportedLocales = [ "all" ];
# Configure keymap in X11
services.xserver.xkb = {
layout = "us";
variant = "";
};
}
|