diff options
| author | Henry J. Webster <hwebs@hwebs.info> | 2026-07-30 13:19:11 -0500 |
|---|---|---|
| committer | Henry J. Webster <hwebs@hwebs.info> | 2026-07-30 13:19:11 -0500 |
| commit | eee8aa138bf4a78a381ef20e211a46bfd0bf9f91 (patch) | |
| tree | 6843a028d448de92dfc8aa0a77f99e759c2e2a41 /machines | |
| parent | 7b33aa726171cd07ecef15db00146101dc4fa839 (diff) | |
enzo: add yambar, HiDPI console/greeter font
Install yambar (status bar) in hwebs's package set. Set a large Terminus
console font (ter-v32n, earlySetup) so the kernel VT and tuigreet greeter
are legible on the HiDPI panel.
Assisted-by: Claude:claude-opus-4-8
Diffstat (limited to 'machines')
| -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"; + }; } |
