diff options
| -rw-r--r-- | machines/enzo/desktop.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/machines/enzo/desktop.nix b/machines/enzo/desktop.nix index 077457c..a1c33e3 100644 --- a/machines/enzo/desktop.nix +++ b/machines/enzo/desktop.nix @@ -63,5 +63,17 @@ xwayland-satellite # run X11 apps under niri mako # notifications libnotify # notify-send + yambar # text status bar ]; + + # --- Console / greeter font (HiDPI panel) --- + # The eDP panel is high-density, so the kernel VT and tuigreet render with a + # tiny 8x16 font. A large Terminus bitmap font makes the TTY and the greeter + # legible; earlySetup applies it from initrd so it's big from the first frame. + # Sizes: ter-v{16,18,20,22,24,28,32}n — bump/drop to taste. + console = { + earlySetup = true; + packages = [ pkgs.terminus_font ]; + font = "ter-v32n"; + }; } |
