Files
nixos/modules/home-manager/cursor.nix
T

14 lines
214 B
Nix

{
config,
pkgs,
...
}: {
home.pointerCursor = {
hyprcursor.enable = true;
enable = true;
package = pkgs.capitaine-cursors-themed;
name = "Capitaine Cursors (Gruvbox)";
size = 32;
};
}