summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2020-05-12 17:07:07 -0600
committerKenny Ballou <kballou@devnulllabs.io>2020-05-12 17:12:50 -0600
commit9c32fa528838eca50027a3520e98e147afc452e3 (patch)
tree26fd1402fd15a166b8fe5ab8046942a186072a6b /system
parentd0bb0e7c02d734e37f181fafaafe128190624bb8 (diff)
downloadcfg.nix-9c32fa528838eca50027a3520e98e147afc452e3.tar.gz
cfg.nix-9c32fa528838eca50027a3520e98e147afc452e3.tar.xz
Move i18n settings to console
keymap and font have been renamed in 20.03. Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'system')
-rw-r--r--system/console.nix6
-rw-r--r--system/i18n.nix2
2 files changed, 6 insertions, 2 deletions
diff --git a/system/console.nix b/system/console.nix
new file mode 100644
index 0000000..8a6b3e4
--- /dev/null
+++ b/system/console.nix
@@ -0,0 +1,6 @@
+{
+ console = {
+ keyMap = "us";
+ font = "Lat2-Terminus16";
+ };
+}
diff --git a/system/i18n.nix b/system/i18n.nix
index 660eb87..f12fc3d 100644
--- a/system/i18n.nix
+++ b/system/i18n.nix
@@ -1,8 +1,6 @@
{
# Select internationalisation properties.
i18n = {
- consoleFont = "Lat2-Terminus16";
- consoleKeyMap = "us";
defaultLocale = "en_US.UTF-8";
};
}