nixos-configs/hosts/common/global/locale.nix
2025-02-25 17:17:26 -05:00

14 lines
286 B
Nix

# hosts/common/global/locale.nix
{...}: {
# Set your time zone.
time.timeZone = "America/Toronto";
# Select internationalisation properties.
i18n.defaultLocale = "en_CA.UTF-8";
# Configure keymap in X11
services.xserver.xkb = {
layout = "us";
variant = "";
};
}