1
0
Files

34 lines
856 B
Nix
Raw Permalink Normal View History

2025-09-21 16:03:27 -07:00
{ ... }:
{
# Enable the Yabai Window Manager
services.yabai = {
enable = true;
config = {
# default layout (can be bsp, stack or float)
layout = "bsp";
# New window spawns to the right if vertical split, or bottom if horizontal split
2025-09-22 11:42:21 -07:00
window_placement = "second_child";
2025-09-21 16:03:27 -07:00
# padding set to 4px
2025-09-22 11:42:21 -07:00
top_padding = "4";
bottom_padding = "4";
left_padding = "4";
right_padding = "4";
window_gap = "4";
2025-09-21 16:03:27 -07:00
# center mouse on window with focus
2025-09-22 11:42:21 -07:00
focus_follows_mouse = "autofocus";
mouse_follows_focus = "off";
2025-09-21 16:03:27 -07:00
# modifier for clicking and dragging with mouse
2025-09-22 11:42:21 -07:00
mouse_modifier = "cmd";
2025-09-21 16:03:27 -07:00
# set modifier + left-click drag to move window
2025-09-22 11:42:21 -07:00
mouse_action1 = "move";
2025-09-21 16:03:27 -07:00
# set modifier + right-click drag to resize window
2025-09-22 11:42:21 -07:00
mouse_action2 = "resize";
2025-09-21 16:03:27 -07:00
};
};
}