diff --git a/overlays/default.nix b/overlays/default.nix index 5b7f34a..3b12e27 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -4,5 +4,6 @@ builtins.map (path: import path) [ ./picom.nix ./rofi.nix ./steam.nix + ./wlroots.nix ./xinit.nix ] diff --git a/overlays/wlroots.nix b/overlays/wlroots.nix new file mode 100644 index 0000000..d9e10cd --- /dev/null +++ b/overlays/wlroots.nix @@ -0,0 +1,7 @@ +self: super: { + wlroots = super.wlroots.override { + mesa = super.mesa.overrideAttrs(o: { + patches = o.patches ++ [ ../hosts/blossom/mesa_mr_17182.patch ]; + }); + }; +}