🔧 add jellyfin-mpv-shim
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 11m32s

This commit is contained in:
Ingolf Wagner 2024-09-04 07:57:18 +07:00
parent 394790bf0e
commit ae3a14f5fa
Signed by: palo
GPG key ID: 76BF5F1928B9618B
2 changed files with 9 additions and 14 deletions

View file

@ -159,7 +159,7 @@ in
text = lib.mkForce base00;
};
startup = [
#{ command = "${pkgs.jellyfin-mpv-shim}/bin/jellyfin-mpv-shim"; always = false; }
#{ command = "${pkgs.jellyfin-mpv-shim}/bin/jellyfin-mpv-shim"; always = true; }
{
command = "${pkgs.networkmanagerapplet}/bin/nm-applet --indicator";
always = true;

View file

@ -4,7 +4,6 @@
config,
...
}:
with pkgs;
with lib;
{
@ -12,25 +11,21 @@ with lib;
(mkIf config.gui.enable {
home.packages = [
freetube
vlc
pkgs.freetube
pkgs.vlc
# music editors
# =============
picard # musicbrainz editor
#kid3-qt # id3 tag editor
easytag
dconf
pkgs.picard # musicbrainz editor
pkgs.easytag
pkgs.dconf
pkgs.jellyfin-mpv-shim
];
})
{
home.packages = [
# music editors
# =============
kid3-cli
];
home.packages = [ ];
}
];
}