From bcc61aa6fab583faf6c7c77de1ffa31f94845e3a Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 13 May 2026 02:32:19 -0700 Subject: [PATCH] Disable Hyprglass in Hyprland config --- dotfiles/config/hypr/hyprland/state.lua | 3 +-- nixos/hyprland.nix | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/dotfiles/config/hypr/hyprland/state.lua b/dotfiles/config/hypr/hyprland/state.lua index bc26db99..c42850e9 100644 --- a/dotfiles/config/hypr/hyprland/state.lua +++ b/dotfiles/config/hypr/hyprland/state.lua @@ -46,11 +46,10 @@ return { current_layout = columns_layout, enable_nstack = true, enable_hyprexpo = true, - -- Keep disabled until the PR231-patched Hyprspace build is switched into /run/current-system. enable_hyprspace = false, enable_hyprwinview = true, enable_workspace_history = true, - enable_hyprglass = true, + enable_hyprglass = false, configure_nstack_plugin_from_lua = false, workspace_layouts = {}, minimized_windows = {}, diff --git a/nixos/hyprland.nix b/nixos/hyprland.nix index deb03289..7bfd2aa6 100644 --- a/nixos/hyprland.nix +++ b/nixos/hyprland.nix @@ -98,7 +98,7 @@ ./packages/hyprspace-lua-api.patch ]; }); - enableHyprglass = true; + enableHyprglass = false; hyprglass = pkgs.callPackage ./packages/hyprglass { src = inputs.hyprglass; hyprland = baseHyprlandPackage;