nix-flake/modules/home/rice/cursor.nix
satr14 83d1f4086d
Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 17s
cp: follow root nixpkgs to fix copyparty eval error
2026-07-11 22:35:42 +07:00

10 lines
No EOL
336 B
Nix

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