config/systems/mdesktop/locale.nix

14 lines
261 B
Nix
Raw Normal View History

2023-10-07 10:30:12 +01:00
{ config, pkgs, ... }:
2023-03-09 08:33:38 +00:00
{
# Time zone
time.timeZone = "Europe/London";
# Internationalisation properties
i18n.defaultLocale = "en_GB.UTF-8";
console = {
2023-10-07 10:30:12 +01:00
font = "${pkgs.terminus_font}/share/consolefonts/ter-v12n.psf.gz";
2023-03-09 08:33:38 +00:00
keyMap = "uk";
};
}