fix: tune sway cursor and touchpad

This commit is contained in:
Jet 2026-05-03 18:03:45 -07:00
parent 2c8ff25308
commit 867287b2c2
No known key found for this signature in database
3 changed files with 14 additions and 0 deletions

View file

@ -19,6 +19,8 @@
MOZ_ENABLE_WAYLAND = "1";
NIXOS_OZONE_WL = "1";
TERMINAL = "ghostty";
XCURSOR_SIZE = "32";
XCURSOR_THEME = "Adwaita";
};
xdg.userDirs = {
@ -38,4 +40,12 @@
extraConfig.gtk-application-prefer-dark-theme = 1;
};
};
home.pointerCursor = {
gtk.enable = true;
x11.enable = true;
name = "Adwaita";
package = pkgs.adwaita-icon-theme;
size = 32;
};
}