19 lines
795 B
Nix
19 lines
795 B
Nix
{ inputs }: final: prev: {
|
|
nixpkgs-review-checks = inputs.nixpkgs-review-checks.defaultPackage."${prev.system}";
|
|
agenix = inputs.agenix.defaultPackage."${prev.system}";
|
|
waybar-hyprland = prev.waybar.overrideAttrs (old: {
|
|
postPatch = old.postPatch or "" + ''
|
|
${final.gnused}/bin/sed -i 's,zext_workspace_handle_v1_activate(workspace_handle_);,const std::string command = "${final.hyprland}/bin/hyprctl dispatch workspace " + name_;\n\tsystem(command.c_str());,g' src/modules/wlr/workspace_manager.cpp
|
|
'';
|
|
mesonFlags = old.mesonFlags or [ ] ++ [ "-Dexperimental=true" ];
|
|
});
|
|
master = import inputs.master {
|
|
inherit (prev) system;
|
|
config.allowUnfree = true;
|
|
};
|
|
stable = import inputs.stable {
|
|
inherit (prev) system;
|
|
config.allowUnfree = true;
|
|
};
|
|
}
|