dotfiles.nix/services/l10n.nix

14 lines
269 B
Nix
Raw Normal View History

2021-01-11 03:59:20 +00:00
{ config, ... }: {
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "us";
};
services.xserver.layout = "us";
# Set your time zone.
time.timeZone = "America/New_York";
}