From a6247666d5b02da9e3975607c004e1b249b249b6 Mon Sep 17 00:00:00 2001 From: Celes Renata Date: Sun, 10 Aug 2025 14:23:41 -0700 Subject: [PATCH] Fix Qt version mismatch by making quickshell follow our nixpkgs - Make quickshell input follow our nixpkgs to ensure Qt version consistency - Fixes 'Cannot mix incompatible Qt library (6.9.1) with this library (6.9.0)' error - Resolves weather widget enable crashes due to Qt version conflicts This ensures quickshell is built with the same Qt version (6.9.1) as our other Qt packages, preventing runtime library incompatibility issues. --- flake.lock | 12 ++++++------ flake.nix | 5 ++++- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index 9c88f28..0ee5920 100644 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1754613544, - "narHash": "sha256-ueR1mGX4I4DWfDRRxxMphbKDNisDeMPMusN72VV1+cc=", + "lastModified": 1754842705, + "narHash": "sha256-2vvncPLsBWV6dRM5LfGHMGYZ+vzqRDqSPBzxPAS0R/A=", "owner": "nix-community", "repo": "home-manager", - "rev": "cc2fa2331aebf9661d22bb507d362b39852ac73f", + "rev": "91586008a23c01cc32894ee187dca8c0a7bd20a4", "type": "github" }, "original": { @@ -22,11 +22,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1754498491, - "narHash": "sha256-erbiH2agUTD0Z30xcVSFcDHzkRvkRXOQ3lb887bcVrs=", + "lastModified": 1754725699, + "narHash": "sha256-iAcj9T/Y+3DBy2J0N+yF9XQQQ8IEb5swLFzs23CdP88=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "c2ae88e026f9525daf89587f3cbee584b92b6134", + "rev": "85dbfc7aaf52ecb755f87e577ddbe6dbbdbc1054", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 80795c4..e72b632 100644 --- a/flake.nix +++ b/flake.nix @@ -7,7 +7,10 @@ url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; - quickshell.url = "github:outfoxxed/quickshell"; + quickshell = { + url = "github:outfoxxed/quickshell"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = { self, nixpkgs, home-manager, quickshell, ... }: