mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
fix: patch hyprland with asahi fix
This commit is contained in:
parent
4a81c7d9c3
commit
e786df3151
2 changed files with 42 additions and 1 deletions
|
@ -0,0 +1,28 @@
|
||||||
|
From 279ec1c291021479b050c83a0435ac7076c1aee0 Mon Sep 17 00:00:00 2001
|
||||||
|
From: vaxerski <vaxry@vaxry.net>
|
||||||
|
Date: Sun, 18 Aug 2024 19:51:54 +0200
|
||||||
|
Subject: [PATCH] linux-dmabuf: allow on split-node systems
|
||||||
|
|
||||||
|
ref #7364
|
||||||
|
---
|
||||||
|
src/protocols/LinuxDMABUF.cpp | 3 +--
|
||||||
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/protocols/LinuxDMABUF.cpp b/src/protocols/LinuxDMABUF.cpp
|
||||||
|
index 3cdb5b34..32625792 100644
|
||||||
|
--- a/src/protocols/LinuxDMABUF.cpp
|
||||||
|
+++ b/src/protocols/LinuxDMABUF.cpp
|
||||||
|
@@ -490,9 +490,8 @@ CLinuxDMABufV1Protocol::CLinuxDMABufV1Protocol(const wl_interface* iface, const
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
- LOGM(ERR, "DRM device {} has no render node, disabling linux dmabuf", device->nodes[DRM_NODE_PRIMARY] ? device->nodes[DRM_NODE_PRIMARY] : "null");
|
||||||
|
+ LOGM(ERR, "DRM device {} has no render node, disabling linux dmabuf checks", device->nodes[DRM_NODE_PRIMARY] ? device->nodes[DRM_NODE_PRIMARY] : "null");
|
||||||
|
drmFreeDevice(&device);
|
||||||
|
- removeGlobal();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
--
|
||||||
|
2.45.2
|
||||||
|
|
|
@ -36,7 +36,20 @@
|
||||||
settings.General.EnableNetworkConfiguration = true;
|
settings.General.EnableNetworkConfiguration = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
nixpkgs.overlays = [inputs.apple-silicon.overlays.apple-silicon-overlay];
|
nixpkgs.overlays = [
|
||||||
|
inputs.apple-silicon.overlays.apple-silicon-overlay
|
||||||
|
(final: prev: {
|
||||||
|
hyprland = prev.hyprland.overrideAttrs (oldAttrs: {
|
||||||
|
src = oldAttrs.src;
|
||||||
|
patches =
|
||||||
|
oldAttrs.patches
|
||||||
|
or []
|
||||||
|
++ [
|
||||||
|
./0001-linux-dmabuf-allow-on-split-node-systems.patch
|
||||||
|
];
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
programs.light.enable = true;
|
programs.light.enable = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue