From 9eb0610d48dd0e1fecf772bbdacf9050d7b82d7c Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 30 Jun 2024 10:39:47 -0400 Subject: [PATCH] fix(home-manager/cursors): exclude from `catppuccin.enable` (#263) --- modules/home-manager/cursor.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/home-manager/cursor.nix b/modules/home-manager/cursor.nix index 41e9cb9..b96470e 100644 --- a/modules/home-manager/cursor.nix +++ b/modules/home-manager/cursor.nix @@ -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";