dotfiles.nix/nixos/lavender/containers/prowlarr/default.nix

16 lines
311 B
Nix
Raw Normal View History

2023-05-21 17:41:24 +08:00
{ ... }:
{
# Prowlarr
virtualisation.oci-containers.containers."prowlarr" = {
autoStart = true;
image = "cr.hotio.dev/hotio/prowlarr";
volumes = [
"/srv/containers/prowlarr:/config"
2023-05-24 23:01:22 +08:00
"/srv/data:/data"
2023-05-21 17:41:24 +08:00
];
ports = [ "9696:9696" ];
2023-06-12 21:47:20 +08:00
extraOptions = [ "--pull=newer" ];
2023-05-21 17:41:24 +08:00
};
}