Skip to content

Commit

Permalink
fix(home-manager/cursors): exclude from catppuccin.enable (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
getchoo authored Jun 30, 2024
1 parent ca2780d commit 9eb0610
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/home-manager/cursor.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ in
options.catppuccin.pointerCursor =
ctp.mkCatppuccinOpt {
name = "pointer cursors";
enableDefault = config.catppuccin.enable && pkgs.stdenv.hostPlatform.isLinux;
# NOTE: we exclude this from the global `catppuccin.enable` as there is no
# `enable` option in the upstream module to guard it
enableDefault = false;
}
// {
accent = ctp.mkBasicOpt "accent" cursorAccentType "cursors";
Expand Down

0 comments on commit 9eb0610

Please sign in to comment.