synix/modules/home/hyprland/cursor.nix
sid ecf5132cbb
Some checks failed
Build tests / build-hosts (pull_request) Failing after 3s
Flake check / flake-check (pull_request) Failing after 13s
enforce new flake schema. formatting.
2026-05-31 18:50:41 +02:00

28 lines
495 B
Nix

{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkForce;
in
{
home = {
pointerCursor = {
name = mkForce "Bibata-Original-Ice";
size = mkForce 24;
package = mkForce pkgs.bibata-cursors;
};
packages = [ pkgs.hyprcursor ];
sessionVariables = {
HYPRCURSOR_THEME = config.home.pointerCursor.name;
HYPRCURSOR_SIZE = toString config.home.pointerCursor.size;
};
};
# wayland.windowManager.hyprland.cursor.no_hardware_cursors = true;
}