steam-fhsenv: don't unshare pid

Some applications such as Natron need access to MIT-SHM or other
shared memory mechanisms. Unsharing the pid namespace
breaks the ability for application to reference shared memory.
This commit is contained in:
Jonathan Ringer 2021-01-15 10:22:13 -08:00 committed by Jonathan Ringer
parent 68398d2dd5
commit 721ea006a8

View file

@ -284,6 +284,11 @@ in buildFHSUserEnv rec {
# this fixes certain issues where they don't render correctly
unshareIpc = false;
# Some applications such as Natron need access to MIT-SHM or other
# shared memory mechanisms. Unsharing the pid namespace
# breaks the ability for application to reference shared memory.
unsharePid = false;
passthru.run = buildFHSUserEnv {
name = "steam-run";