chore: hostname AZLT124-L changed to AZ-LT-NIX

This commit is contained in:
2026-04-01 11:21:00 +02:00
parent 57a371392a
commit c66acd787a
19 changed files with 17 additions and 19 deletions

View File

@@ -0,0 +1,20 @@
{
config,
lib,
...
}: let
serviceName = "n8n";
portUtils = import ../../../lib/port-utils.nix {inherit lib;};
servicePort = portUtils.getPort serviceName "AZLTNIX";
in {
services.${serviceName} = {
enable = true;
openFirewall = true;
};
systemd.services.n8n = {
environment = {
N8N_SECURE_COOKIE = "false";
N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS = "false";
};
};
}