From 9a4dc02b2024700e86e9bbf55f904d7ce2045591 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandra=20=C3=98stermark?= Date: Wed, 12 Nov 2025 20:10:17 +0100 Subject: [PATCH] fix minor mistake --- nixarr/recyclarr/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/nixarr/recyclarr/default.nix b/nixarr/recyclarr/default.nix index d69fc9a..248635c 100644 --- a/nixarr/recyclarr/default.nix +++ b/nixarr/recyclarr/default.nix @@ -11,10 +11,12 @@ with lib; let yamlGenerator = {preserved-tags ? []}: let selectors = pkgs.lib.strings.concatStringsSep "/" - (builtins.map (x: '' - with((.. | select(kind == "scalar") | select(test("^!${x} .*"))); . = sub("!${x} ", "") | . tag="!${x}") - '')) - preserved-tags; + (builtins.map ( + x: '' + with((.. | select(kind == "scalar") | select(test("^!${x} .*"))); . = sub("!${x} ", "") | . tag="!${x}") + '' + ) + preserved-tags); in { generate = name: value: pkgs.callPackage (