nichts/nyx/homes/notashelf/programs/graphical/wms/hyprland/config/exec.nix
2024-04-09 23:11:33 +02:00

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}"
];
};
}