about summary refs log tree commit diff
path: root/machines/devhell/hildr.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2019-12-22 20:49:43 +0100
committerProfpatsch <mail@profpatsch.de>2019-12-22 20:51:00 +0100
commitf0e65e6254ea72f92422392f4493681ff6c5c760 (patch)
tree004a2881c3761f8e7344b27fa5e28d923d27189d /machines/devhell/hildr.nix
parent075c4e093d5bcef94f2b5e1df44a8e364edfbbc2 (diff)
machines: `consoleFont` and `consoleKeyMap` moved to `console`
Fixes the evaluation warning.

cc @aszlig @devhell @sternenseemann
Diffstat (limited to 'machines/devhell/hildr.nix')
-rw-r--r--machines/devhell/hildr.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/machines/devhell/hildr.nix b/machines/devhell/hildr.nix
index 19c89029..47959d5e 100644
--- a/machines/devhell/hildr.nix
+++ b/machines/devhell/hildr.nix
@@ -82,11 +82,14 @@
   };
 
   i18n = {
-    consoleFont = "lat9w-16";
-    consoleKeyMap = "uk";
     defaultLocale = "en_GB.UTF-8";
   };
 
+  console = {
+    font = "lat9w-16";
+    keyMap = "uk";
+  };
+
   #### Machine-specific service configuration ####
 
   vuizvui.user.devhell.profiles.services.enable = true;