Fix jellyfin media player
wayland issues
This commit is contained in:
parent
fd9cfd4d0f
commit
53c8eb919d
2 changed files with 6 additions and 11 deletions
|
@ -13,14 +13,11 @@
|
||||||
|
|
||||||
home.packages = with pkgs;
|
home.packages = with pkgs;
|
||||||
[
|
[
|
||||||
jellyfin-media-player # watch shows & movies from jellyfin with hardware decoding
|
|
||||||
# feishin-appimage # self-packaged feishin while electron build fails
|
|
||||||
signal-desktop # secure messenger
|
signal-desktop # secure messenger
|
||||||
webcord-vencord # more "privacy friendly" discord client
|
webcord-vencord # more "privacy friendly" discord client
|
||||||
anki
|
anki
|
||||||
calibre
|
calibre
|
||||||
|
|
||||||
rofi-audio-switcher # Script to switch default audio sinks/sources
|
|
||||||
mpv # Video player
|
mpv # Video player
|
||||||
]
|
]
|
||||||
++ (with pkgs.unstable; [feishin]);
|
++ (with pkgs.unstable; [feishin]);
|
||||||
|
|
|
@ -1,19 +1,17 @@
|
||||||
{inputs, ...}: {
|
{ inputs, ... }: {
|
||||||
imports = [inputs.flatpaks.homeManagerModules.declarative-flatpak];
|
imports = [ inputs.flatpaks.homeManagerModules.declarative-flatpak ];
|
||||||
services.flatpak = {
|
services.flatpak = {
|
||||||
remotes.flathub = "https://flathub.org/repo/flathub.flatpakrepo";
|
remotes.flathub = "https://flathub.org/repo/flathub.flatpakrepo";
|
||||||
packages = [
|
packages = [
|
||||||
"flathub:app/md.obsidian.Obsidian//stable"
|
"flathub:app/md.obsidian.Obsidian//stable"
|
||||||
"flathub:app/com.github.iwalton3.jellyfin-media-player//stable"
|
"flathub:app/com.github.iwalton3.jellyfin-media-player//stable"
|
||||||
|
"flathub:app/com.github.tchx84.Flatseal//stable"
|
||||||
];
|
];
|
||||||
overrides = {
|
overrides = {
|
||||||
global = {
|
global = {
|
||||||
filesystems = [
|
filesystems = [
|
||||||
"~/.local/share/icons"
|
"~/.local/share/icons"
|
||||||
];
|
];
|
||||||
environment = {
|
|
||||||
"MOZ_ENABLE_WAYLAND" = 1;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
"md.obsidian.Obsidian" = {
|
"md.obsidian.Obsidian" = {
|
||||||
sockets = [
|
sockets = [
|
||||||
|
@ -22,9 +20,9 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
"com.github.iwalton3.jellyfin-media-player" = {
|
"com.github.iwalton3.jellyfin-media-player" = {
|
||||||
environment = {
|
sockets = [
|
||||||
QT_XCB_GL_INTEGRATION = "xcb_egl";
|
"!wayland"
|
||||||
};
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue