server/system/locale.nix
2024-10-07 15:32:17 +01:00

14 lines
214 B
Nix
Executable File

{ config, ... }:
{
# Time zone
time.timeZone = "Europe/London";
# Internationalisation properties
i18n.defaultLocale = "en_GB.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "uk";
};
}