-
-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hyprexpo: Failed initializing hooks #226
Comments
might be due to a stdenv mismatch. Try overriding the stdenv to |
Nope, still doesn't work with this override (pkgs.hyprlandPlugins.hyprexpo.overrideAttrs (oldAttrs: rec{ stdenv = pkgs.gcc14Stdenv; })) |
That's not correct. Should be |
im sorry if this is turning into a nixos support thread but using .override gives me this error: error: function 'anonymous lambda' called with unexpected argument 'stdenv' |
You seem to be using hyprexpo and hyprland both from nixpkgs, so I guess I managed to break the plugins in the last update. I'll look into it. |
@themg95 try adding this in your config, hopefully it works nixpkgs.overlays = [
(final: prev: {
hyprland-plugins = prev.hyprland-plugins // {
mkHyprlandPlugin =
hyprland:
args@{ pluginName, ... }:
hyprland.stdenv.mkDerivation (
args
// {
pname = "${pluginName}";
nativeBuildInputs = [ final.pkg-config ] ++ args.nativeBuildInputs or [ ];
buildInputs = [ hyprland ] ++ hyprland.buildInputs ++ (args.buildInputs or [ ]);
meta = args.meta // {
description = args.meta.description or "";
longDescription =
(args.meta.longDescription or "")
+ "\n\nPlugins can be installed via a plugin entry in the Hyprland NixOS or Home Manager options.";
};
}
);
};
};
)
]; |
I had to change |
iirc I am running expo on my laptop on git and it is working |
Yeah I'm also running git. The problem is hyprland 0.43 and the tagged 0.43 hyprexpo (same as git, for all intents and purposes). |
I'm encountering this very vaguer error when I try to load hyprexpo.
The text was updated successfully, but these errors were encountered: