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