change gnome cursor theme

This commit is contained in:
Yan Lin 2025-10-20 15:05:22 +02:00
parent 18da3b64bd
commit bd730402fd

View file

@ -22,6 +22,7 @@ in
"org/gnome/desktop/interface" = { "org/gnome/desktop/interface" = {
color-scheme = "prefer-dark"; color-scheme = "prefer-dark";
gtk-theme = "Adwaita-dark"; gtk-theme = "Adwaita-dark";
cursor-theme = "Adwaita";
}; };
# Input sources - US English # Input sources - US English
@ -109,5 +110,14 @@ in
download-updates-notify = false; download-updates-notify = false;
}; };
}; };
# Configure cursor theme system-wide
home.pointerCursor = {
name = "Adwaita";
package = pkgs.adwaita-icon-theme;
size = 24;
gtk.enable = true;
x11.enable = true;
};
}; };
} }