From ce9f9d17cb9f25a197b801e083d7e12cbf6f21ac Mon Sep 17 00:00:00 2001 From: pazpi Date: Wed, 3 Dec 2025 16:08:06 +0100 Subject: [PATCH] Formatting --- justfile | 4 ++++ modules/services/n8n.nix | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 6278743..f50f71e 100644 --- a/justfile +++ b/justfile @@ -35,6 +35,10 @@ gc: @echo "Running garbage collection..." nix-collect-garbage -d +fmt: + @echo "Formatting project..." + find . -name '*.nix' -not -path './.direnv/*' -not -path './.git/*' | xargs nix fmt -- + alias a:= apply alias b:= build alias d:= dev diff --git a/modules/services/n8n.nix b/modules/services/n8n.nix index a7b0d49..c78fd31 100644 --- a/modules/services/n8n.nix +++ b/modules/services/n8n.nix @@ -62,7 +62,8 @@ in GENERIC_TIMEZONE = "Europe/Rome"; N8N_PROTOCOL = "https"; WEBHOOK_URL = "https://${cfg.proxy.subdomain}.${cfg.proxy.domain}/"; - } // cfg.environment; + } + // cfg.environment; }; })