dotfiles.nix/nixos/viridian/containers/recyclarr.nix

17 lines
430 B
Nix
Raw Permalink Normal View History

2024-08-08 09:02:42 +08:00
{...}: {
2024-01-23 09:45:42 +08:00
virtualisation.oci-containers.containers = {
# Automatically synchronize recommended settings from the TRaSH guides to your Sonarr/Radarr instances
recyclarr = {
autoStart = true;
2024-06-16 23:08:52 +08:00
image = "ghcr.io/recyclarr/recyclarr:6.0.2";
2024-01-23 09:45:42 +08:00
volumes = [
"/srv/containers/recyclarr:/config"
];
extraOptions = [
"--network=media-stack"
];
2024-06-16 23:08:52 +08:00
user = "1000:100";
2024-01-23 09:45:42 +08:00
};
};
}