From d554c8fbf2478a4844f641e816a77ded71bfb1ef Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Thu, 16 May 2024 15:52:35 -0400 Subject: [PATCH] fix(hyprland): use correct cursor theme in all apps --- user/modules/hyprland.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/user/modules/hyprland.nix b/user/modules/hyprland.nix index 6e525a9..2903777 100644 --- a/user/modules/hyprland.nix +++ b/user/modules/hyprland.nix @@ -1,7 +1,7 @@ {pkgs, ...}: { imports = [ ./waybar - ./wofi + ./wofi.nix ]; home.packages = with pkgs; [ @@ -95,10 +95,12 @@ name = "Papirus"; package = pkgs.papirus-icon-theme; }; - cursorTheme = { - name = "Adwaita"; - package = pkgs.gnome.adwaita-icon-theme; - size = 24; - }; + }; + + home.pointerCursor = { + gtk.enable = true; + name = "Adwaita"; + package = pkgs.gnome.adwaita-icon-theme; + size = 24; }; }