mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-08 10:25:59 +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;
|
||
|
}
|