diff options
| author | Henry J. Webster <hwebs@hwebs.info> | 2026-08-01 09:57:40 -0500 |
|---|---|---|
| committer | Henry J. Webster <hwebs@hwebs.info> | 2026-08-01 09:57:40 -0500 |
| commit | 726ef32d2631f15f991591ef6879925e08f442f6 (patch) | |
| tree | e2cea9a349a3bbd9491221ae19794dd3fda2d256 /machines/kusanagi/desktop.nix | |
| parent | 1ae615826dcb98cc9bfa83a0d6c0b550c6f36278 (diff) | |
desktop: centralize Adwaita cursor theme, fix pointer cursor on kusanagi
kusanagi set XCURSOR_THEME=Bibata-Modern-Classic but never declared the
theme in Nix — it only resolved while bibata-cursors lingered in an old
nix-env profile. Once that was gone the theme fell off the icon path and
the pointer/hand cursor disappeared.
Standardize both hosts on Adwaita (matching the shared niri config.kdl):
move XCURSOR_THEME/XCURSOR_SIZE and the adwaita-icon-theme package into
the shared profiles/desktop.nix so the theme is always on the icon path.
Drop the inert HYPRCURSOR_* vars (hyprcursor is unused under niri).
Assisted-by: Claude:claude-opus-4-8
Diffstat (limited to 'machines/kusanagi/desktop.nix')
| -rw-r--r-- | machines/kusanagi/desktop.nix | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/machines/kusanagi/desktop.nix b/machines/kusanagi/desktop.nix index e4b2bc3..88fe9a9 100644 --- a/machines/kusanagi/desktop.nix +++ b/machines/kusanagi/desktop.nix @@ -95,13 +95,10 @@ fontDir.enable = true; }; - # --- Cursor / renderer --- + # --- Renderer --- + # (Cursor theme is shared — see ../../profiles/desktop.nix.) environment.sessionVariables = { GSK_RENDERER = "gl"; - XCURSOR_THEME = "Bibata-Modern-Classic"; - XCURSOR_SIZE = "24"; - HYPRCURSOR_THEME = "Bibata-Modern-Classic"; - HYPRCURSOR_SIZE = "24"; }; # --- User: desktop groups (niri essentials + printing). Hardware groups |
