Use nixpkgs quickshell directly (supports all architectures)

This commit is contained in:
Celes Renata
2025-12-12 13:29:15 -08:00
parent bd14bc77fe
commit de96a23032
+2 -4
View File
@@ -25,10 +25,8 @@
in
{
overlays.default = final: prev: {
# Override quickshell from upstream to add Qt6 Wayland dependency
quickshell-base = quickshell.packages.${final.system}.default.overrideAttrs (oldAttrs: {
buildInputs = (oldAttrs.buildInputs or []) ++ (with final.kdePackages; [ qtwayland ]);
});
# Use quickshell from nixpkgs (supports all architectures)
quickshell-base = prev.quickshell;
# Enhanced quickshell with Qt5Compat support for dots-hyprland
quickshell = final.writeShellScriptBin "quickshell" ''