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)"; + }; +}