diff --git a/profiles/core/console.nix b/profiles/core/console.nix index fc46477..7b28a0f 100644 --- a/profiles/core/console.nix +++ b/profiles/core/console.nix @@ -1,9 +1,14 @@ -{ ... }: { +{ pkgs, ... }: { console = { - font = "Lat2-Terminus16"; + font = "DejaVuSansMono"; earlySetup = true; - packages = [ ]; + packages = with pkgs; [ (nerdfonts.override { fonts = [ "DejaVuSansMono" ]; }) ]; }; - services.kmscon.enable = true; + services.kmscon = { + enable = true; + extraConfig = [ + "font-size=14" + ]; + }; }