Skip to content
Charles Malouin edited this page Jul 26, 2025 · 5 revisions

OpenSUSE MicroOS/Aeon/Kalpa wine/proton issues (noexec filesystem)

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

NixOS schema 'com.vysp3r.ProtonPlus.State' is not installed issue

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";
            };
        };
    }
}

Clone this wiki locally