From 07ca2a759bdb04cf1bfa073e5ab85e78b271abde Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Fri, 4 Jul 2025 15:09:47 +0300 Subject: [PATCH] feat: disable `not respondind` dialog in hyprland and persist its directory --- modules/home/workspace/wayland/hyprland.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home/workspace/wayland/hyprland.nix b/modules/home/workspace/wayland/hyprland.nix index 6a146bc..9d4200f 100644 --- a/modules/home/workspace/wayland/hyprland.nix +++ b/modules/home/workspace/wayland/hyprland.nix @@ -105,6 +105,7 @@ in misc = { disable_hyprland_logo = true; disable_splash_rendering = true; + enable_anr_dialog = false; mouse_move_enables_dpms = true; vfr = false; vrr = 0; # TODO: Remove after flickering is fixed @@ -268,5 +269,9 @@ in ]; }; }; + + persist.state.directories = [ + ".local/share/hyprland" + ]; }; }