From f309839b7e8c32d590a9ee8bfaf74cb379281d8f Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 22 May 2023 21:58:50 +0300 Subject: [PATCH] Use Terminus for TTY font --- machines/asus/fonts.nix | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/machines/asus/fonts.nix b/machines/asus/fonts.nix index 2531817..21d2164 100644 --- a/machines/asus/fonts.nix +++ b/machines/asus/fonts.nix @@ -1,9 +1,19 @@ -{ pkgs, systemFonts, ... }: +{ pkgs, systemConfiguration, systemFonts, ... }: -with pkgs; systemFonts [ +(with pkgs; systemFonts [ (nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) -] +]) + +// + +(systemConfiguration { + console = { + earlySetup = true; + font = "Lat2-Terminus16"; + packages = [ pkgs.terminus ]; + }; +})