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