nixos-configs/devices/nos/modules/docker/media/sabnzbd/compose.nix
matt1432 c14a7906c8
All checks were successful
Discord / discord commits (push) Successful in 54s
feat(servers): only expose public apps to WAN
2024-08-11 14:53:45 -04:00

34 lines
587 B
Nix

{
config,
pkgs,
...
}: let
inherit (config.khepri) rwDataDir;
rwPath = rwDataDir + "/media/sabnzbd";
in {
khepri.compositions."sabnzbd" = {
networks.proxy_net = {external = true;};
services."sabnzbd" = {
image = import ./images/sabnzbd.nix pkgs;
restart = "always";
ports = ["8382:8082"];
environment = {
PUID = "1000";
PGID = "1000";
TZ = "America/New_York";
};
volumes = [
"${rwPath}/data:/config"
"/data:/data"
];
cpus = 2;
networks = ["proxy_net"];
};
};
}