From 5675a9686851d9626560052a032c4e14e533c1fa Mon Sep 17 00:00:00 2001 From: eyJhb Date: Sun, 1 Jun 2025 02:31:59 +0200 Subject: [PATCH] home-cursor: sway depend on cfg.size instead of gtk.cursorTheme.size (#7176) --- modules/config/home-cursor.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/config/home-cursor.nix b/modules/config/home-cursor.nix index b792c5c12..4db3cc19b 100644 --- a/modules/config/home-cursor.nix +++ b/modules/config/home-cursor.nix @@ -249,7 +249,7 @@ in config = { seat = { "*" = { - xcursor_theme = "${cfg.name} ${toString config.gtk.cursorTheme.size}"; + xcursor_theme = "${cfg.name} ${toString cfg.size}"; }; }; };