From 8e9c0f788d191b9473fa3d975282071b1b638a5e Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 19 Sep 2021 16:45:57 -0400 Subject: [PATCH] fix: readd normal console font --- profiles/core/console.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/core/console.nix b/profiles/core/console.nix index 4e50730..5ed3969 100644 --- a/profiles/core/console.nix +++ b/profiles/core/console.nix @@ -1,6 +1,6 @@ { pkgs, ... }: { console = { - # font = "DejaVuSansMono"; + font = "Lat2-Terminus16"; earlySetup = true; packages = with pkgs; [ (nerdfonts.override { fonts = [ "DejaVuSansMono" ]; }) ]; };