2023-06-04 14:22:04 +00:00
|
|
|
{ config, pkgs, lib, ... }: {
|
2022-10-02 17:40:10 +00:00
|
|
|
|
|
|
|
options = {
|
|
|
|
streamServer = lib.mkOption {
|
2023-01-21 14:29:03 +00:00
|
|
|
type = lib.types.nullOr lib.types.str;
|
2022-10-02 17:40:10 +00:00
|
|
|
description = "Hostname for Jellyfin library";
|
2022-12-21 21:18:03 +00:00
|
|
|
default = null;
|
2022-10-02 17:40:10 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-12-21 21:38:34 +00:00
|
|
|
config = lib.mkIf (config.streamServer != null) {
|
2022-10-02 17:40:10 +00:00
|
|
|
|
|
|
|
services.jellyfin.enable = true;
|
2023-06-06 00:56:52 +00:00
|
|
|
services.jellyfin.group = "media";
|
|
|
|
users.users.jellyfin = { isSystemUser = true; };
|
2022-10-02 17:40:10 +00:00
|
|
|
|
2022-12-21 21:18:03 +00:00
|
|
|
caddy.routes = [{
|
2022-10-02 17:40:10 +00:00
|
|
|
match = [{ host = [ config.streamServer ]; }];
|
|
|
|
handle = [{
|
|
|
|
handler = "reverse_proxy";
|
|
|
|
upstreams = [{ dial = "localhost:8096"; }];
|
|
|
|
}];
|
|
|
|
}];
|
2022-10-04 22:59:28 +00:00
|
|
|
|
|
|
|
# Create videos directory, allow anyone in Jellyfin group to manage it
|
2022-10-23 04:16:42 +00:00
|
|
|
systemd.tmpfiles.rules = [
|
2023-06-06 00:56:52 +00:00
|
|
|
"d /var/lib/jellyfin 0775 jellyfin media"
|
|
|
|
"d /var/lib/jellyfin/library 0775 jellyfin media"
|
2022-10-23 04:16:42 +00:00
|
|
|
];
|
2022-10-04 22:59:28 +00:00
|
|
|
|
2023-06-04 14:22:04 +00:00
|
|
|
# Enable VA-API for hardware transcoding
|
|
|
|
hardware.opengl = {
|
|
|
|
enable = true;
|
2023-06-04 16:14:11 +00:00
|
|
|
driSupport = true;
|
2023-06-04 14:22:04 +00:00
|
|
|
extraPackages = [ pkgs.libva ];
|
|
|
|
};
|
2023-06-06 03:13:17 +00:00
|
|
|
environment.systemPackages = [ pkgs.libva-utils ];
|
|
|
|
environment.variables = {
|
|
|
|
# VAAPI and VDPAU config for accelerated video.
|
|
|
|
# See https://wiki.archlinux.org/index.php/Hardware_video_acceleration
|
|
|
|
"VDPAU_DRIVER" = "radeonsi";
|
|
|
|
"LIBVA_DRIVER_NAME" = "radeonsi";
|
|
|
|
};
|
2023-06-04 14:22:04 +00:00
|
|
|
|
2022-10-02 17:40:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|