From 20fcca6bda714ab0d4caba7af96b76fedfe20baf Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Sun, 7 Jul 2024 10:06:09 -0400 Subject: [PATCH] add cursor to fix firefox not rendering links however, the cursor is too big and i can't seem to make it smaller --- modules/nixos/hardware/mouse.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/nixos/hardware/mouse.nix b/modules/nixos/hardware/mouse.nix index ef6b0e3..6a8d91f 100644 --- a/modules/nixos/hardware/mouse.nix +++ b/modules/nixos/hardware/mouse.nix @@ -21,5 +21,15 @@ accelProfile = "flat"; accelSpeed = "1.15"; }; + + # Cursor + home-manager.users.${config.user}.home.pointerCursor = { + name = "Adwaita"; + package = pkgs.gnome3.adwaita-icon-theme; + size = 24; + gtk.enable = true; + x11.enable = true; + }; + }; }