From 045fed07489d1fa55cf474e3f9118e7399fb6e2a Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sat, 5 Jul 2025 17:08:33 -0400 Subject: [PATCH] Fix crashes on shadps4 launch. --- nix/configuration/roles/shadps4/files/config.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nix/configuration/roles/shadps4/files/config.toml b/nix/configuration/roles/shadps4/files/config.toml index e421171..88e4c41 100644 --- a/nix/configuration/roles/shadps4/files/config.toml +++ b/nix/configuration/roles/shadps4/files/config.toml @@ -1,4 +1,15 @@ +[General] +# Without this, we get: +# /run/current-system/sw/bin/xdg-mime: line 1002: /nix/store/wd9bigydk9x8bsvnslrvb5klbgmh98v5-hm_mimeapps.list.new: Read-only file system +enableDiscordRPC = false + + [GUI] addonInstallDir = "/home/talexander/.local/share/shadPS4/addcont" installDirs = ["/home/talexander/.local/share/shadPS4/games"] installDirsEnabled = [true] +# Without the geometry settings shadps4 crashes instantly with a floating point error. +geometry_h = 981 +geometry_w = 748 +geometry_x = 0 +geometry_y = 0