This commit is contained in:
Lilith 2025-03-28 04:06:00 +01:00
parent d6313c6cb1
commit f3721e14bb
Signed by: lilith
GPG key ID: 8712A0F317C37175
7 changed files with 143 additions and 74 deletions

View file

@ -18,6 +18,10 @@
steam = {
enable = true;
gamescopeSession.enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
gamemode.enable = true;
@ -32,5 +36,17 @@
protontricks
];
};
# SteamVR kernel patch for AMDGPU
boot.kernelPatches = [
{
name = "amdgpu-ignore-ctx-privileges";
patch = pkgs.fetchpatch {
name = "cap_sys_nice_begone.patch";
url = "https://github.com/Frogging-Family/community-patches/raw/master/linux61-tkg/cap_sys_nice_begone.mypatch";
hash = "sha256-Y3a0+x2xvHsfLax/uwycdJf3xLxvVfkfDVqjkxNaYEo=";
};
}
];
};
}