From 7c2869f47bd8f45acfafc4da55034958ae39659c Mon Sep 17 00:00:00 2001 From: tux Date: Thu, 7 May 2026 06:23:00 +0530 Subject: [PATCH] feat: add bibata cursor --- modules/hm/desktop/cursor.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 modules/hm/desktop/cursor.nix diff --git a/modules/hm/desktop/cursor.nix b/modules/hm/desktop/cursor.nix new file mode 100644 index 0000000..91b63fe --- /dev/null +++ b/modules/hm/desktop/cursor.nix @@ -0,0 +1,11 @@ +{ + flake.modules.homeManager.desktop = + { pkgs, ... }: + { + home.pointerCursor = { + package = pkgs.bibata-cursors; + name = "Bibata-Modern-Ice"; + size = 28; + }; + }; +}