nixos-configs/devices/nos/modules/docker/media/seerr/compose.nix

32 lines
581 B
Nix
Raw Normal View History

2024-07-24 15:49:31 -04:00
{
config,
pkgs,
...
}: let
inherit (config.khepri) rwDataDir;
rwPath = rwDataDir + "/media/seerr";
in {
khepri.compositions."seerr" = {
networks.proxy_net = {external = true;};
services."seerr" = {
image = import ./images/jellyseerr.nix pkgs;
restart = "always";
environment = {
LOG_LEVEL = "debug";
TZ = "America/New_York";
};
volumes = [
"${rwPath}/data:/app/config"
];
extraHosts = ["lan.nelim.org:10.0.0.130"];
networks = ["proxy_net"];
ports = ["5055:5055"];
};
};
}