36 lines
696 B
Nix
36 lines
696 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
with lib;
|
|
let
|
|
cfg = config.nas-apps.jellyfin;
|
|
in
|
|
{
|
|
imports = [ ./options.nix ];
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
virtualisation.oci-containers.containers.${cfg.name} = {
|
|
autoStart = true;
|
|
image = cfg.image;
|
|
extraOptions = [ "--device=nvidia.com/gpu=0" ];
|
|
volumes = [
|
|
"${cfg.configPath}:/config"
|
|
"${cfg.moviesPath}:/data/movies"
|
|
"${cfg.tvPath}:/data/tv"
|
|
];
|
|
ports = [ "${cfg.port}:8096" ];
|
|
environment = {
|
|
NVIDIA_VISIBLE_DEVICES = "all";
|
|
NVIDIA_DRIVER_CAPABILITIES = "all";
|
|
PUID = cfg.puid;
|
|
PGID = cfg.pgid;
|
|
TZ = cfg.timeZone;
|
|
};
|
|
};
|
|
};
|
|
}
|