diff --git a/home/features/desktop/common/flatpak.nix b/home/features/desktop/common/flatpak.nix index 8df46f2..2ed3ee2 100644 --- a/home/features/desktop/common/flatpak.nix +++ b/home/features/desktop/common/flatpak.nix @@ -1,9 +1,4 @@ -{ - inputs, - pkgs, - vars, - ... -}: { +{inputs, ...}: { imports = [inputs.flatpaks.homeManagerModules.default]; services.flatpak = { remotes.flathub = "https://flathub.org/repo/flathub.flatpakrepo"; @@ -11,6 +6,7 @@ "flathub:app/us.zoom.Zoom//stable" "flathub:app/com.discordapp.Discord//stable" "flathub:app/md.obsidian.Obsidian//stable" + "flathub:app/com.github.iwalton3.jellyfin-media-player//stable" ]; overrides = { global = { @@ -27,6 +23,11 @@ "system-bus" ]; }; + "com.github.iwalton3.jellyfin-media-player" = { + environment = { + QT_XCB_GL_INTEGRATION = "xcb_egl"; + }; + }; }; }; }