summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/web-apps/invoiceplane.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/web-apps/invoiceplane.nix')
-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 cccf70295e89..99e7b1f96eac 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;
}