1

Add prowlarr service

This commit is contained in:
2023-09-01 11:38:50 +02:00
parent d63a920f24
commit 38a1771b7e

View File

@ -0,0 +1,28 @@
{config, lib, pkgs, ...}:
{
virtualisation.oci-containers.containers.prowlarr = {
image = "linuxserver/prowlarr:latest";
autoStart = true;
dependsOn = [];
ports = [
"9696:9696"
];
volumes = [
"prowlarr_config:/config"
];
environment = {
PUID = "1000";
PGID = "1000";
TZ = "Europe/Berlin";
};
extraOptions = [
# "--restart=always" # Conflicts with NixOS' default of using --rm
];
};
}