fix(hyprland): use correct cursor theme in all apps

This commit is contained in:
Michael Thomas 2024-05-16 15:52:35 -04:00
parent 7bcda9193b
commit d554c8fbf2

View File

@ -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;
};
}