13 lines
300 B
Nix
13 lines
300 B
Nix
{osConfig, ...}: let
|
|
inherit (osConfig) modules;
|
|
|
|
# theming
|
|
inherit (modules.style) pointerCursor;
|
|
in {
|
|
wayland.windowManager.hyprland.settings = {
|
|
exec-once = [
|
|
# set cursor for HL itself
|
|
"hyprctl setcursor ${pointerCursor.name} ${toString pointerCursor.size}"
|
|
];
|
|
};
|
|
}
|