refactor containers
This commit is contained in:
parent
1d23c89f58
commit
2a15f00fa1
11 changed files with 195 additions and 174 deletions
17
nixos/viridian/containers/recyclarr.nix
Normal file
17
nixos/viridian/containers/recyclarr.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
virtualisation.oci-containers.containers = {
|
||||
# Automatically synchronize recommended settings from the TRaSH guides to your Sonarr/Radarr instances
|
||||
recyclarr = {
|
||||
autoStart = true;
|
||||
image = "ghcr.io/hotio/recyclarr:6.0";
|
||||
volumes = [
|
||||
"/srv/containers/recyclarr:/config"
|
||||
];
|
||||
extraOptions = [
|
||||
"--network=media-stack"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue