move nas to internal ssd

This commit is contained in:
mjallen18
2024-02-21 13:47:45 -06:00
parent b599645fd9
commit c3d1e2f962
10 changed files with 82 additions and 42 deletions

17
nas-apps/jellyseerr.nix Normal file
View 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";
};
};
}