Fix 4k jellyfin playback on ludwig

This commit is contained in:
GHOSCHT 2024-11-02 11:30:15 +01:00
parent 45830f76f9
commit 63de62454c
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82

View file

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