10 lines
239 B
Nix
10 lines
239 B
Nix
|
{
|
||
|
virtualisation.oci-containers.containers = {
|
||
|
prowlarr_ab = {
|
||
|
image = "kinda.sus.lol/prowlarr";
|
||
|
autoStart = true;
|
||
|
ports = [ "127.0.0.1:9697:9696" ];
|
||
|
volumes = [ "/var/lib/prowlarr_ab:/config" ];
|
||
|
};
|
||
|
};
|
||
|
}
|