Formatting

This commit is contained in:
pazpi 2025-12-03 16:08:06 +01:00
parent b6b2774414
commit ce9f9d17cb
2 changed files with 6 additions and 1 deletions

View file

@ -35,6 +35,10 @@ gc:
@echo "Running garbage collection..." @echo "Running garbage collection..."
nix-collect-garbage -d nix-collect-garbage -d
fmt:
@echo "Formatting project..."
find . -name '*.nix' -not -path './.direnv/*' -not -path './.git/*' | xargs nix fmt --
alias a:= apply alias a:= apply
alias b:= build alias b:= build
alias d:= dev alias d:= dev

View file

@ -62,7 +62,8 @@ in
GENERIC_TIMEZONE = "Europe/Rome"; GENERIC_TIMEZONE = "Europe/Rome";
N8N_PROTOCOL = "https"; N8N_PROTOCOL = "https";
WEBHOOK_URL = "https://${cfg.proxy.subdomain}.${cfg.proxy.domain}/"; WEBHOOK_URL = "https://${cfg.proxy.subdomain}.${cfg.proxy.domain}/";
} // cfg.environment; }
// cfg.environment;
}; };
}) })