Commit b865b96b authored by figsoda's avatar figsoda
Browse files

nixos/invoiceplane: remove unnecessary parentheses

parent f97daa68
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -327,7 +327,7 @@ in
    )) eachSite;

    systemd.services =
      (mapAttrs' (hostName: cfg: (
      mapAttrs' (hostName: cfg: (
        nameValuePair "invoiceplane-cron-${hostName}" (mkIf cfg.cron.enable {
          serviceConfig = {
            Type = "oneshot";
@@ -335,7 +335,7 @@ in
            ExecStart = "${pkgs.curl}/bin/curl --header 'Host: ${hostName}' http://localhost/invoices/cron/recur/${cfg.cron.key}";
          };
        })
    )) eachSite);
    )) eachSite;

  }