nixdots/home/programs/graphical/wms/hyprland/config/misc.nix

20 lines
502 B
Nix
Raw Permalink Normal View History

2024-06-09 20:40:50 +00:00
{
wayland.windowManager.hyprland.settings = {
misc = {
# Disable redundant renders (covered by wallpaper)
disable_hyprland_logo = true;
disable_splash_rendering = true;
# Follow requests from windows to be focused
focus_on_activate = true;
# Auto-reload is unnecessary on NixOS, config is readonly
2024-07-26 23:07:07 +00:00
disable_autoreload = true;
2024-06-09 20:40:50 +00:00
# Enable DPMS on these actions
mouse_move_enables_dpms = true;
key_press_enables_dpms = true;
};
};
}