Files
home-manager/wm/cursor.nix
2026-01-18 21:12:00 +01:00

14 lines
273 B
Nix

{ pkgs, ... }:
{
home.pointerCursor = {
# name = "Bibata-Modern-Ice"; # change to your cursor theme
# package = pkgs.bibata-cursors;
name = "Adwaita";
package = pkgs.adwaita-icon-theme;
size = 24;
gtk.enable = true;
x11.enable = true;
};
}