Use Adwaita cursor

This commit is contained in:
2026-01-18 21:12:00 +01:00
parent 8661019cdc
commit c28d575483
2 changed files with 14 additions and 0 deletions

View File

@@ -13,6 +13,7 @@
./programs/zsh.nix ./programs/zsh.nix
./programs/direnv.nix ./programs/direnv.nix
./programs/firefox.nix ./programs/firefox.nix
./wm/cursor.nix
./wm/dconf.nix ./wm/dconf.nix
./wm/gtk.nix ./wm/gtk.nix
./wm/hyprland.nix ./wm/hyprland.nix

13
wm/cursor.nix Normal file
View File

@@ -0,0 +1,13 @@
{ 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;
};
}