depot/hosts/VEGAS/services/warehouse/default.nix

37 lines
1 KiB
Nix
Raw Normal View History

{ config, depot, lib, pkgs, tools, ... }:
2021-10-16 21:22:58 +03:00
with tools.nginx;
{
# TODO: not a whole lot to configure, maybe add some autoconfig stuff
services.jellyfin = {
enable = true;
package = depot.packages.jellyfin;
2021-10-16 21:22:58 +03:00
};
services.nginx.virtualHosts."warehouse.${tools.meta.domain}" = lib.mkMerge [
(vhosts.proxy "http://127.0.0.1:8096")
{
locations."/".extraConfig = ''
proxy_buffering off;
'';
locations."/socket" = {
inherit (config.services.nginx.virtualHosts."warehouse.${tools.meta.domain}".locations."/") proxyPass;
proxyWebsockets = true;
};
# TODO: video cache
}
];
hardware.opengl = {
enable = true;
package = pkgs.intel-media-driver;
2021-10-16 21:22:58 +03:00
};
systemd.services.jellyfin.serviceConfig = {
# allow access to GPUs for hardware transcoding
DeviceAllow = lib.mkForce "char-drm";
BindPaths = lib.mkForce "/dev/dri";
# to allow restarting from web ui
Restart = lib.mkForce "always";
Slice = "mediaplayback.slice";
};
}