-
-
Notifications
You must be signed in to change notification settings - Fork 38
FAQ
Charles Malouin edited this page Jul 26, 2025
·
5 revisions
If you run into issues using WINE, and WINE based programs in flatpaks, it is likely due to an SELinux issue, and can be checked by running:
sudo getsebool selinuxuser_execmod
If that returns 'selinuxuser_execmod --> disabled', you will need to enable it. This can be done temporarily (resets on next boot) with
sudo setsebool selinuxuser_execmod 1
Or can be set Persistent with:
sudo setsebool -P selinuxuser_execmod 1
If you encounter this issue, simply add the following override to your nix-flatpak config.
{
...
overrides = {
...
"com.vysp3r.ProtonPlus" = {
Environment = {
GSETTINGS_SCHEMA_DIR = "/app/share/glib-2.0/schemas";
};
};
}
}