From 7e41bde16e768b8ad04d5a751958d4a5fe466518 Mon Sep 17 00:00:00 2001 From: Celes Renata Date: Fri, 12 Dec 2025 13:54:08 -0800 Subject: [PATCH] Add better error message for missing quickshell --- modules/components/quickshell-service.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/components/quickshell-service.nix b/modules/components/quickshell-service.nix index 85dba13..25dc7e7 100644 --- a/modules/components/quickshell-service.nix +++ b/modules/components/quickshell-service.nix @@ -7,8 +7,8 @@ let cfg = config.programs.dots-hyprland.quickshell; mainCfg = config.programs.dots-hyprland; - # Use the wrapped quickshell from our overlay (includes Qt5Compat support) - workingQuickshell = pkgs.quickshell; + # Use quickshell from nixpkgs (available in 25.11+) + workingQuickshell = pkgs.quickshell or (throw "quickshell not found in nixpkgs - ensure you're using nixpkgs 25.11 or later"); # Service startup script that handles initial setup quickshellStartup = pkgs.writeShellScript "quickshell-startup" ''