From aa1c31dcc21ad8f7b9aa56499c92bc1d7e81fc53 Mon Sep 17 00:00:00 2001 From: teutat3s Date: Wed, 26 Apr 2023 12:12:23 +0200 Subject: [PATCH] ryzensun: increase console font size for HiDPI display --- hosts/ryzensun/ryzensun.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hosts/ryzensun/ryzensun.nix b/hosts/ryzensun/ryzensun.nix index 610f9e77..ec626bfd 100644 --- a/hosts/ryzensun/ryzensun.nix +++ b/hosts/ryzensun/ryzensun.nix @@ -41,6 +41,13 @@ in { networking = import ./networking.nix; + # Increase console font size for HiDPI display + console = { + earlySetup = true; + font = lib.mkForce "ter-i32b"; + packages = [pkgs.terminus_font]; + }; + home-manager.users."${psCfg.user.name}".xdg.configFile = mkIf psCfg.sway.enable { "sway/config.d/10-custom-keybindings.conf".source = ./.config/sway/config.d/custom-keybindings.conf; "sway/config.d/autostart.conf".source = ./.config/sway/config.d/autostart.conf;