Formatting
This commit is contained in:
parent
b6b2774414
commit
ce9f9d17cb
2 changed files with 6 additions and 1 deletions
4
justfile
4
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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue