config/systems/desktop/locale.nix
2024-09-29 16:42:01 +01:00

14 lines
253 B
Nix

{ pkgs, ... }:
{
# Time zone
time.timeZone = "Europe/London";
# Internationalisation properties
i18n.defaultLocale = "en_GB.UTF-8";
console = {
font = "${pkgs.terminus_font}/share/consolefonts/ter-v24n.psf.gz";
keyMap = "uk";
};
}