Switch waybar from manual fetchFromGitHub theme to catppuccin/nix module. Add catppuccin macchiato GTK theme to fix unreadable tray context menus. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
276 B
Nix
13 lines
276 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.pointerCursor = {
|
|
gtk.enable = true;
|
|
# x11.enable = true;
|
|
package = pkgs.catppuccin-cursors.macchiatoLavender;
|
|
# name = "Catppuccin-Macchiato-Lavender-Cursors";
|
|
name = "catppuccin-macchiato-lavender-cursors";
|
|
size = 32;
|
|
};
|
|
|
|
}
|