From 6b3c20c9fc31bef77f4f66a3edf06c3a5326f785 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Mon, 6 Jan 2020 09:55:35 +0100 Subject: [PATCH] refactor: update i18n config --- common/i18n.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/i18n.nix b/common/i18n.nix index e45c4f6..42b0796 100644 --- a/common/i18n.nix +++ b/common/i18n.nix @@ -1,15 +1,15 @@ { config, pkgs, ... }: { - # Select internationalisation properties. + console = { + font = "Lat2-Terminus16"; + keyMap = "uk"; + }; i18n = { - consoleFont = "Lat2-Terminus16"; - consoleKeyMap = "uk"; defaultLocale = "en_IE.UTF-8"; inputMethod.enabled = "ibus"; inputMethod.ibus.engines = with pkgs.ibus-engines; [ uniemoji ]; }; - # Set your time zone. time.timeZone = "Europe/Berlin"; }