diff options
| author | Henry J. Webster <hwebs@hwebs.info> | 2026-07-30 17:47:25 -0500 |
|---|---|---|
| committer | Henry J. Webster <hwebs@hwebs.info> | 2026-07-30 17:47:25 -0500 |
| commit | 84ff065ab0a95cc440d1e7c1485cbf4ce740fedc (patch) | |
| tree | 730c4f5d21d6ad4efca361490faa0874839c6a0e | |
| parent | 1e32663a69d0e2b232ea851dcdb869ce386ec67b (diff) | |
enzo: install adwaita-icon-theme for cursor shapes
XCURSOR_THEME/niri point at Adwaita but the theme wasn't installed, so
named cursor shapes (link pointer/hand) failed to load and the cursor
never changed on hover. Install adwaita-icon-theme so the theme files
exist on disk.
Assisted-by: Claude:claude-opus-4-8
| -rw-r--r-- | machines/enzo/desktop.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/machines/enzo/desktop.nix b/machines/enzo/desktop.nix index aa23083..8d61670 100644 --- a/machines/enzo/desktop.nix +++ b/machines/enzo/desktop.nix @@ -60,6 +60,11 @@ XCURSOR_SIZE = "24"; }; + # Cursor theme referenced by XCURSOR_THEME / niri's xcursor-theme. Without this + # package the Adwaita cursor files aren't on disk, so named shapes (e.g. the + # link "pointer"/hand) fail to load and the cursor never changes on hover. + environment.systemPackages = [ pkgs.adwaita-icon-theme ]; + # --- User: groups + niri essentials --- users.users.hwebs.extraGroups = [ "audio" |
