From a4f7e8bc925544a964a446c2a368dc8070230846 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sat, 10 Aug 2024 12:27:37 +0200 Subject: [PATCH] Use different wlroots patch --- machines/kholinar/hardware.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/machines/kholinar/hardware.nix b/machines/kholinar/hardware.nix index acb08307..96be6b51 100644 --- a/machines/kholinar/hardware.nix +++ b/machines/kholinar/hardware.nix @@ -82,17 +82,16 @@ }; nixpkgs.overlays = [ (final: prev: { - wlroots = prev.wlroots.overrideAttrs (old: { + wlroots_0_18 = prev.wlroots_0_18.overrideAttrs (old: { patches = (old.patches or [ ]) ++ [ ( final.fetchpatch { - url = "https://gitlab.freedesktop.org/wlroots/wlroots/uploads/b4f932e370ed03d88f202191eaf60965/DisplayLink.patch"; - hash = "sha256-1HheLsOSnj4OMiA35QCHkWprTNgAeG2tXrGbaQyUrF4="; + url = "https://gitlab.freedesktop.org/kennylevinsen/wlroots/-/commit/7e5bf4aef5c61401aaf777bd45cf393c538dac3e.patch"; + hash = "sha256-62C7xtqrPgZm+vpjKyp8OsEyE6yIyf4bgecmILi+Qy4="; } ) ]; }); }) ]; - environment.variables.WLR_DRM_DEVICES = "/dev/dri/card0:/dev/dri/card1"; }