move nas to internal ssd
This commit is contained in:
17
nas-apps/jellyseerr.nix
Normal file
17
nas-apps/jellyseerr.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user