Files
nixos-config/root/services/sabnzbd/default.nix
2025-05-29 13:53:53 +02:00

24 lines
471 B
Nix

{ ... }:
{
virtualisation.oci-containers.containers."container-sabnzbd-app" = {
autoStart = true;
image = "lscr.io/linuxserver/sabnzbd:latest";
environment = {
"TZ" = "Europe/Berlin";
"PUID" = "0";
"PGID" = "0";
};
networks = [
"network-internal"
];
volumes = [
"volume-sabnzbd-config:/config:rw"
"/data:/data:rw"
];
ports = ["8080:8080"];
extraOptions = [
"--pull=always"
];
};
}