nix-config/users/willifan/desktop/theme/cursor.nix
2024-07-06 21:42:24 +02:00

17 lines
No EOL
317 B
Nix

{ pkgs, home-manager, ... }:
{
environment.sessionVariables = {
XCURSOR_SIZE = "18";
HYPRCURSOR_SIZE = "18";
};
home-manager.users.willifan = {
home.pointerCursor = {
gtk.enable = true;
name = "Bibata-Modern-Classic";
package = pkgs.bibata-cursors;
size = 18;
};
};
}