VEGAS/warehouse: use custom jellyfin package

This commit is contained in:
Max Headroom 2023-06-20 16:38:49 +02:00
parent 165443cf93
commit ad69943dda

View file

@ -1,14 +1,10 @@
{ config, lib, pkgs, tools, ... }:
{ config, depot, lib, pkgs, tools, ... }:
with tools.nginx;
{
# TODO: not a whole lot to configure, maybe add some autoconfig stuff
services.jellyfin = {
enable = true;
package = pkgs.jellyfin.override {
ffmpeg = pkgs.ffmpeg.override {
withMfx = true;
};
};
package = depot.packages.jellyfin;
};
services.nginx.virtualHosts."warehouse.${tools.meta.domain}" = lib.mkMerge [
(vhosts.proxy "http://127.0.0.1:8096")