Files
nixos/hosts/unstable/icdm-root/location.nix
T

16 lines
256 B
Nix
Raw Normal View History

{ ... }:
2023-03-07 17:17:24 -06:00
{
# Set your time zone.
time.timeZone = "America/Chicago";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
# Configure keymap in X11
2024-03-04 23:03:47 -06:00
services.xserver.xkb = {
2023-03-07 17:17:24 -06:00
layout = "us";
2024-03-04 23:03:47 -06:00
variant = "";
2023-03-07 17:17:24 -06:00
};
}