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

11 lines
208 B
Nix

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