Nix configurations for my homelab
0

Configure Feed

Select the types of activity you want to include in your feed.

Use an in-development version of mesa

I'll be doing this until the issue with Sky: Children of the Light are
resolved.

https://gitlab.freedesktop.org/mesa/mesa/-/issues/12966

+17
+17
modules/games.nix
··· 32 32 33 33 r2modman = prev.r2modman.override { electron = prev.electron-bin; }; 34 34 35 + mesa = prev.mesa.overrideAttrs ( 36 + finalAttrs: prevAttrs: { 37 + git-commit = "06ad9a25e557498bcb10d9a79ea723f7a78448a3"; 38 + version = "25.1.0-${finalAttrs.git-commit}"; 39 + 40 + src = prev.fetchFromGitLab { 41 + owner = "mesa"; 42 + repo = "mesa"; 43 + rev = finalAttrs.git-commit; 44 + hash = "sha256-39gLZDDxLUdbHwOuYL9wceTiWzjl45BPGqE+0ex7n8s="; 45 + domain = "gitlab.freedesktop.org"; 46 + }; 47 + 48 + patches = [ ./packages/mesa/opencl.patch ]; 49 + } 50 + ); 51 + 35 52 # rpcs3 = 36 53 # let 37 54 # rpcs3GitVersion = "17494-0e501478";