From 82561a61954952a24ebd1924283faf28538e9409 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 16 Sep 2021 17:40:51 -0400 Subject: [PATCH] fix: switch to kmscon font definiion --- profiles/core/console.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/profiles/core/console.nix b/profiles/core/console.nix index 7b28a0f..103deca 100644 --- a/profiles/core/console.nix +++ b/profiles/core/console.nix @@ -1,14 +1,15 @@ { pkgs, ... }: { console = { - font = "DejaVuSansMono"; + # font = "DejaVuSansMono"; earlySetup = true; packages = with pkgs; [ (nerdfonts.override { fonts = [ "DejaVuSansMono" ]; }) ]; }; services.kmscon = { enable = true; - extraConfig = [ - "font-size=14" - ]; + extraConfig = '' + font-size=14 + font-name=DejaVuSansMono + ''; }; }