21 lines
465 B
Nix
21 lines
465 B
Nix
{
|
|
virtualisation = {
|
|
containers.enable = true;
|
|
podman.enable = true;
|
|
oci-containers.containers = {
|
|
radarr = {
|
|
image = "lscr.io/linuxserver/radarr:latest";
|
|
volumes = [
|
|
"radarr-config:/config"
|
|
"/video-data:/data"
|
|
];
|
|
environment.TZ = "America/New_York";
|
|
labels.swag = "enable";
|
|
extraOptions = [
|
|
"--pull=newer"
|
|
"--network=www"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|