Merge pull request 'Use Adwaita cursor' (#8) from feature/hyprland-cursor into master

Reviewed-on: #8
This commit is contained in:
2026-01-18 21:14:28 +01:00
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;
};
}