summaryrefslogtreecommitdiff
path: root/machines/enzo
diff options
context:
space:
mode:
authorHenry J. Webster <hwebs@hwebs.info>2026-07-30 13:19:11 -0500
committerHenry J. Webster <hwebs@hwebs.info>2026-07-30 13:19:11 -0500
commiteee8aa138bf4a78a381ef20e211a46bfd0bf9f91 (patch)
tree6843a028d448de92dfc8aa0a77f99e759c2e2a41 /machines/enzo
parent7b33aa726171cd07ecef15db00146101dc4fa839 (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/enzo')
-rw-r--r--machines/enzo/desktop.nix12
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";
+ };
}