config/systems/desktop/locale.nix

14 lines
253 B
Nix
Raw Permalink Normal View History

2024-09-15 12:56:25 +01:00
{ 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";
};
}