nixos/modules/_home/cursor.nix
2026-03-28 03:28:42 -03:00

13 lines
251 B
Nix

{ pkgs, ...}: {
home.pointerCursor = {
gtk.enable = true;
name = "Bibata-Modern-Ice";
package = pkgs.bibata-cursors;
size = 24;
};
home.sessionVariables = {
XCURSOR_THEME = "Bibata-Modern-Ice";
XCURSOR_SIZE = 24;
};
}