🔧 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; text = lib.mkForce base00;
}; };
startup = [ 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"; command = "${pkgs.networkmanagerapplet}/bin/nm-applet --indicator";
always = true; always = true;

View file

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