dotfiles.nix/nixos/lavender/containers/radarr.nix

15 lines
264 B
Nix
Raw Normal View History

2023-05-16 14:08:07 +08:00
{ ... }:
{
# Radarr
virtualisation.oci-containers.containers."radarr" = {
autoStart = true;
image = "cr.hotio.dev/hotio/radarr";
volumes = [
"/srv/containers/radarr:/config"
2023-05-21 17:41:24 +08:00
"/srv/data:/data"
2023-05-16 14:08:07 +08:00
];
ports = [ "7878:7878" ];
};
}