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

18 lines
672 B
Nix

{
wayland.windowManager.hyprland.settings = {
misc = {
# disable redundant renders
disable_hyprland_logo = true; # wallpaper covers it anyway
disable_splash_rendering = true; # "
# window swallowing
enable_swallow = true; # hide windows that spawn other windows
swallow_regex = "foot|thunar|nemo|wezterm"; # windows for which swallow is applied
# dpms
mouse_move_enables_dpms = true; # enable dpms on mouse/touchpad action
key_press_enables_dpms = true; # enable dpms on keyboard action
disable_autoreload = true; # autoreload is unnecessary on nixos, because the config is readonly anyway
};
};
}