30 lines
566 B
Nix
30 lines
566 B
Nix
{
|
|
wayland.windowManager.hyprland.settings = {
|
|
misc = {
|
|
disable_hyprland_logo = true;
|
|
disable_splash_rendering = true;
|
|
focus_on_activate = true;
|
|
anr_missed_pings = 3;
|
|
new_window_takes_over_fullscreen = 1;
|
|
};
|
|
|
|
cursor = {
|
|
no_hardware_cursors = true;
|
|
no_break_fs_vrr = true;
|
|
min_refresh_rate = 48;
|
|
};
|
|
|
|
render = {
|
|
direct_scanout = true;
|
|
cm_enabled = true;
|
|
};
|
|
|
|
plugin = {
|
|
hyprsplit = {
|
|
num_workspaces = 5;
|
|
persistent_workspaces = false;
|
|
};
|
|
};
|
|
};
|
|
}
|