about summary refs log tree commit diff
path: root/nixos/modules/services/web-apps
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-11-30 18:13:58 -0500
committerfigsoda <figsoda@pm.me>2022-11-30 18:13:58 -0500
commitb865b96b9734658add24b41bf002fd8053ec8f73 (patch)
treeb46ce1242bdfcc4a28faff579b32e87a0af2abe5 /nixos/modules/services/web-apps
parentf97daa68bc8c77be68c24fd8c51175c7237c61f8 (diff)
nixos/invoiceplane: remove unnecessary parentheses
Diffstat (limited to 'nixos/modules/services/web-apps')
-rw-r--r--nixos/modules/services/web-apps/invoiceplane.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/web-apps/invoiceplane.nix b/nixos/modules/services/web-apps/invoiceplane.nix
index cccf70295e898..99e7b1f96eac5 100644
--- a/nixos/modules/services/web-apps/invoiceplane.nix
+++ b/nixos/modules/services/web-apps/invoiceplane.nix
@@ -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;
 
   }