diff options
-rw-r--r-- | user-mora.nix | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/user-mora.nix b/user-mora.nix index cd3f115..17a7641 100644 --- a/user-mora.nix +++ b/user-mora.nix @@ -68,15 +68,18 @@ gtk.enable = true; gtk.font.name = "DejaVu Sans"; gtk.font.size = 8; - gtk.cursorTheme = { - package = pkgs.catppuccin-cursors.mochaMauve; - name = "catppuccin-mocha-mauve-cursors"; - }; - home.pointerCursor = { - package = pkgs.catppuccin-cursors.mochaMauve; + home.pointerCursor = let + catppuccin-cursors' = pkgs.catppuccin-cursors.overrideAttrs (prev: { + patchPhase = '' + # FIX: GTK3-4 is screaming ;_; + sed -i scripts/build-cursors -e 's/NOMINAL_SIZE=24/NOMINAL_SIZE=32/' + ''; + }); + in { + package = catppuccin-cursors'.mochaMauve; name = "catppuccin-mocha-mauve-cursors"; - size = 32; + size = 24; gtk.enable = true; x11.enable = true; }; |