jelly test

This commit is contained in:
mjallen18
2024-02-18 23:12:22 -06:00
parent 75a13b4c63
commit d858889911

View File

@@ -5,6 +5,7 @@
virtualisation.oci-containers.containers."jellyfin" = {
autoStart = true;
image = "jellyfin/jellyfin";
extraOptions = [ "--runtime=nvidia" ];
volumes = [
"/mnt/Safe\ SSD/ssd_app_data/jellyfin/config:/config"
"/mnt/Safe\ SSD/ssd_app_data/jellyfin/cache:/cache"
@@ -15,10 +16,10 @@
ports = [ "8096:8096" ];
environment = {
NVIDIA_VISIBLE_DEVICES = "all";
NVIDIA_DRIVER_CAPABILITIES = "compute,utility";
JELLYFIN_LOG_DIR = "/log";
PUID = "911";
PGID = "1000";
};
extraOptions = [ "--runtime=nvidia" ];
};
}