Created
January 1, 2026 12:03
-
-
Save kekneus373/2749f51aafba92751ff767262406b3be to your computer and use it in GitHub Desktop.
[QUICK FIX] Run Qt AppImages on NixOS (Could not load the Qt platform plugin "xcb")
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # activate `appimage-run` first: https://wiki.nixos.org/wiki/Appimage | |
| appimage=<your_appimage_path> # set your executable path | |
| QT_PLUGIN_PATH= appimage-run "$appimage" # RUN IT | |
| # SOURCE: https://discourse.nixos.org/t/appimage-run-fails-loading-qt-platform-plugin-xcb/29293 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment