nix-flake/modules/home/rice/cursor.nix
2026-07-12 12:14:08 +07:00

11 lines
356 B
Nix

{ lib, pkgs, ctp-opt, ... }: {
catppuccin.cursors.enable = false; # managed manually below to use the "Light" cursor variant
home.pointerCursor = {
enable = true;
gtk.enable = true;
package = pkgs.catppuccin-cursors."${ctp-opt.flavor}Light";
name = lib.mkOverride 30 "catppuccin-${ctp-opt.flavor}-light-cursors";
size = 24;
};
}