From 4a98bf37fa47b07ce6c66fa88ea9e098d8e97055 Mon Sep 17 00:00:00 2001 From: Tomas Rivera <137088692+Totorile1@users.noreply.github.com> Date: Thu, 5 Mar 2026 18:36:59 +0100 Subject: [PATCH] added cursor theme --- hosts/laptop/home.nix | 1 + modules/home-manager/cursor.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 modules/home-manager/cursor.nix diff --git a/hosts/laptop/home.nix b/hosts/laptop/home.nix index e454874..999d34c 100755 --- a/hosts/laptop/home.nix +++ b/hosts/laptop/home.nix @@ -25,6 +25,7 @@ imports = [ ../../modules/home-manager/swaylock.nix ../../modules/home-manager/anki.nix # we use only for some settings. see ../../modules/nixos/anki.nix for activating ../../modules/home-manager/librewolf.nix # privacy browser +../../modules/home-manager/cursor.nix # cursor (the icon not the app) ]; diff --git a/modules/home-manager/cursor.nix b/modules/home-manager/cursor.nix new file mode 100644 index 0000000..66e4205 --- /dev/null +++ b/modules/home-manager/cursor.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: +{ + home.pointerCursor = { + hyprcursor.enable = true; + enable = true; + package = pkgs.capitaine-cursors-themed; + name = "Capitaine Cursors (Gruvbox)"; + }; +}