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 ]; + }; +})