nixos-configs/devices/nos/modules/arion/media/seerr/compose.nix
matt1432 dd18307e25
All checks were successful
Discord / discord commits (push) Has been skipped
feat(arion): add hosts for media containers and add rss-bridge on homepage
2024-03-19 20:40:45 -04:00

22 lines
426 B
Nix

{config, ...}: let
inherit (config.arion) rwDataDir;
rwPath = rwDataDir + "/media/seerr";
in {
arion.projects."seerr"."seerr" = {
image = ./images/jellyseerr.nix;
restart = "always";
environment = {
LOG_LEVEL = "debug";
TZ = "America/New_York";
};
volumes = [
"${rwPath}/data:/app/config"
];
extra_hosts = ["lan.nelim.org=10.0.0.130"];
ports = ["5055:5055"];
};
}