dotfiles/modules/nixos/services/jellyfin.nix

50 lines
1.3 KiB
Nix
Raw Normal View History

{ config, pkgs, lib, ... }: {
options = {
streamServer = lib.mkOption {
2023-01-21 14:29:03 +00:00
type = lib.types.nullOr lib.types.str;
description = "Hostname for Jellyfin library";
2022-12-21 21:18:03 +00:00
default = null;
};
};
2022-12-21 21:38:34 +00:00
config = lib.mkIf (config.streamServer != null) {
services.jellyfin.enable = true;
2023-06-06 00:56:52 +00:00
services.jellyfin.group = "media";
users.users.jellyfin = { isSystemUser = true; };
2022-12-21 21:18:03 +00:00
caddy.routes = [{
match = [{ host = [ config.streamServer ]; }];
handle = [{
handler = "reverse_proxy";
upstreams = [{ dial = "localhost:8096"; }];
}];
}];
# Create videos directory, allow anyone in Jellyfin group to manage it
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"
];
# Enable VA-API for hardware transcoding
hardware.opengl = {
enable = true;
driSupport = true;
extraPackages = [ pkgs.libva ];
};
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";
};
users.users.jellyfin.extraGroups =
[ "render" "video" ]; # Access to /dev/dri
};
}