recyclarr: fix syntax for example configuration

This commit is contained in:
Joseph Stahl
2026-04-05 14:31:38 -04:00
parent 0ed20069c0
commit a4ade3df44
2 changed files with 9 additions and 9 deletions
+8 -8
View File
@@ -25,24 +25,24 @@ in
type = format.type;
default = { };
example = {
sonarr = [
{
sonarr = {
sonarr-main = {
instance_name = "main";
base_url = "http://localhost:8989";
api_key = {
_secret = "/run/credentials/recyclarr.service/sonarr-api_key";
};
}
];
radarr = [
{
};
};
radarr = {
radarr-main = {
instance_name = "main";
base_url = "http://localhost:7878";
api_key = {
_secret = "/run/credentials/recyclarr.service/radarr-api_key";
};
}
];
};
};
};
description = ''
Recyclarr YAML configuration as a Nix attribute set.
+1 -1
View File
@@ -21,7 +21,7 @@ buildDotnetModule (finalAttrs: {
projectFile = "Recyclarr.slnx";
nugetDeps = ./deps.json;
prePatch = ''
postPatch = ''
cat > src/Recyclarr.Core/GitVersionInformation.g.cs <<'EOF'
public static class GitVersionInformation
{