home-manager: cast cursor size to int (#1401)

Link: https://github.com/nix-community/stylix/pull/1401

Reviewed-by: awwpotato <awwpotato@voidq.com>
This commit is contained in:
Flameopathic 2025-05-29 13:52:17 -04:00 committed by GitHub
parent 3a4599a330
commit 37736ba403
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,7 +19,8 @@ in
)
{
home.pointerCursor = {
inherit (cfg) name package size;
inherit (cfg) name package;
size = builtins.floor (cfg.size + 0.5);
x11.enable = true;
gtk.enable = true;
};