This commit is contained in:
2026-09-01 10:45:21 -04:00
commit ac32649783
51 changed files with 4837 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
pkgs,
}:
rec {
# vkd3d was added in revision 10
one-vkd3d =
(pkgs.writeText "vkd3d-regedit-changes.reg" ''
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"d3d12"="native"
"d3d12core"="native"
'').outPath;
combined = pkgs.linkFarm "registry-patches-combined" [
{
name = "one.reg";
path = one-vkd3d;
}
];
}