mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-20 16:39:31 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
94 lines
2.7 KiB
Nix
94 lines
2.7 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.n8n;
|
|
format = pkgs.formats.json { };
|
|
configFile = format.generate "n8n.json" cfg.settings;
|
|
in
|
|
{
|
|
options.services.n8n = {
|
|
enable = lib.mkEnableOption "n8n server";
|
|
|
|
openFirewall = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = "Open ports in the firewall for the n8n web interface.";
|
|
};
|
|
|
|
settings = lib.mkOption {
|
|
type = format.type;
|
|
default = { };
|
|
description = ''
|
|
Configuration for n8n, see <https://docs.n8n.io/hosting/environment-variables/configuration-methods/>
|
|
for supported values.
|
|
'';
|
|
};
|
|
|
|
webhookUrl = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "";
|
|
description = ''
|
|
WEBHOOK_URL for n8n, in case we're running behind a reverse proxy.
|
|
This cannot be set through configuration and must reside in an environment variable.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
services.n8n.settings = {
|
|
# We use this to open the firewall, so we need to know about the default at eval time
|
|
port = lib.mkDefault 5678;
|
|
};
|
|
|
|
systemd.services.n8n = {
|
|
description = "N8N service";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
environment = {
|
|
# This folder must be writeable as the application is storing
|
|
# its data in it, so the StateDirectory is a good choice
|
|
N8N_USER_FOLDER = "/var/lib/n8n";
|
|
HOME = "/var/lib/n8n";
|
|
N8N_CONFIG_FILES = "${configFile}";
|
|
WEBHOOK_URL = "${cfg.webhookUrl}";
|
|
|
|
# Don't phone home
|
|
N8N_DIAGNOSTICS_ENABLED = "false";
|
|
N8N_VERSION_NOTIFICATIONS_ENABLED = "false";
|
|
};
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
ExecStart = "${pkgs.n8n}/bin/n8n";
|
|
Restart = "on-failure";
|
|
StateDirectory = "n8n";
|
|
|
|
# Basic Hardening
|
|
NoNewPrivileges = "yes";
|
|
PrivateTmp = "yes";
|
|
PrivateDevices = "yes";
|
|
DevicePolicy = "closed";
|
|
DynamicUser = "true";
|
|
ProtectSystem = "strict";
|
|
ProtectHome = "read-only";
|
|
ProtectControlGroups = "yes";
|
|
ProtectKernelModules = "yes";
|
|
ProtectKernelTunables = "yes";
|
|
RestrictAddressFamilies = "AF_UNIX AF_INET AF_INET6 AF_NETLINK";
|
|
RestrictNamespaces = "yes";
|
|
RestrictRealtime = "yes";
|
|
RestrictSUIDSGID = "yes";
|
|
MemoryDenyWriteExecute = "no"; # v8 JIT requires memory segments to be Writable-Executable.
|
|
LockPersonality = "yes";
|
|
};
|
|
};
|
|
|
|
networking.firewall = lib.mkIf cfg.openFirewall {
|
|
allowedTCPPorts = [ cfg.settings.port ];
|
|
};
|
|
};
|
|
}
|