From 24377ecdf361e8b4a26cf2a27cac01491f969b00 Mon Sep 17 00:00:00 2001 From: ChaotiCryptidz Date: Wed, 9 Mar 2022 19:22:25 +0000 Subject: [PATCH] console --- profiles/base-linux/console.nix | 6 ++++++ profiles/base/locale.nix | 4 ---- 2 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 profiles/base-linux/console.nix diff --git a/profiles/base-linux/console.nix b/profiles/base-linux/console.nix new file mode 100644 index 0000000..15e2602 --- /dev/null +++ b/profiles/base-linux/console.nix @@ -0,0 +1,6 @@ +{ ... }: { + console = { + font = "Lat2-Terminus16"; + keyMap = "uk"; + }; +} diff --git a/profiles/base/locale.nix b/profiles/base/locale.nix index 2c59d38..0706961 100644 --- a/profiles/base/locale.nix +++ b/profiles/base/locale.nix @@ -1,7 +1,3 @@ { config, ... }: { i18n.defaultLocale = "en_GB.UTF-8"; - console = { - font = "Lat2-Terminus16"; - keyMap = "uk"; - }; }