18 lines
374 B
Nix
18 lines
374 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
# jellyseerr
|
|
virtualisation.oci-containers.containers."jellyseerr" = {
|
|
autoStart = true;
|
|
image = "fallenbagel/jellyseerr";
|
|
ports = [ "5055:5055" ];
|
|
volumes = [
|
|
"/mnt/ssd/ssd_app_data/jellyseerr:/config"
|
|
];
|
|
environment = {
|
|
PUID = "911";
|
|
PGID = "1000";
|
|
TZ = "America/Chicago";
|
|
};
|
|
};
|
|
}
|