added cursor theme

This commit is contained in:
Tomas Rivera
2026-03-05 18:36:59 +01:00
parent 67422aa106
commit 4a98bf37fa
2 changed files with 10 additions and 0 deletions
+1
View File
@@ -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)
];
+9
View File
@@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
home.pointerCursor = {
hyprcursor.enable = true;
enable = true;
package = pkgs.capitaine-cursors-themed;
name = "Capitaine Cursors (Gruvbox)";
};
}