mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 19:25:58 +01:00
9 lines
196 B
Nix
9 lines
196 B
Nix
|
final: prev: let
|
||
|
lib = final;
|
||
|
|
||
|
mkJoinedOverlays = overlays: final: prev:
|
||
|
lib.foldl' (attrs: overlay: attrs // (overlay final prev)) {} overlays;
|
||
|
in prev // {
|
||
|
inherit mkJoinedOverlays;
|
||
|
}
|