mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
We do not create networking.target anywhere ourselves and it is not one of the default targets defined in systemd.special(7). References to networking.target are therefore most likely typos and meant to refer to network.target, which does exist.
145 lines
4.1 KiB
Nix
145 lines
4.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.node-red;
|
|
defaultUser = "node-red";
|
|
in
|
|
{
|
|
options.services.node-red = {
|
|
enable = mkEnableOption "the Node-RED service";
|
|
|
|
package = mkPackageOption pkgs [ "node-red" ] { };
|
|
|
|
openFirewall = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Open ports in the firewall for the server.
|
|
'';
|
|
};
|
|
|
|
withNpmAndGcc = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Give Node-RED access to NPM and GCC at runtime, so 'Nodes' can be
|
|
downloaded and managed imperatively via the 'Palette Manager'.
|
|
'';
|
|
};
|
|
|
|
configFile = mkOption {
|
|
type = types.path;
|
|
default = "${cfg.package}/lib/node_modules/node-red/packages/node_modules/node-red/settings.js";
|
|
defaultText = literalExpression ''"''${package}/lib/node_modules/node-red/packages/node_modules/node-red/settings.js"'';
|
|
description = ''
|
|
Path to the JavaScript configuration file.
|
|
See <https://github.com/node-red/node-red/blob/master/packages/node_modules/node-red/settings.js>
|
|
for a configuration example.
|
|
'';
|
|
};
|
|
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 1880;
|
|
description = "Listening port.";
|
|
};
|
|
|
|
user = mkOption {
|
|
type = types.str;
|
|
default = defaultUser;
|
|
description = ''
|
|
User under which Node-RED runs.If left as the default value this user
|
|
will automatically be created on system activation, otherwise the
|
|
sysadmin is responsible for ensuring the user exists.
|
|
'';
|
|
};
|
|
|
|
group = mkOption {
|
|
type = types.str;
|
|
default = defaultUser;
|
|
description = ''
|
|
Group under which Node-RED runs.If left as the default value this group
|
|
will automatically be created on system activation, otherwise the
|
|
sysadmin is responsible for ensuring the group exists.
|
|
'';
|
|
};
|
|
|
|
userDir = mkOption {
|
|
type = types.path;
|
|
default = "/var/lib/node-red";
|
|
description = ''
|
|
The directory to store all user data, such as flow and credential files and all library data. If left
|
|
as the default value this directory will automatically be created before the node-red service starts,
|
|
otherwise the sysadmin is responsible for ensuring the directory exists with appropriate ownership
|
|
and permissions.
|
|
'';
|
|
};
|
|
|
|
safe = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = "Whether to launch Node-RED in --safe mode.";
|
|
};
|
|
|
|
define = mkOption {
|
|
type = types.attrs;
|
|
default = { };
|
|
description = "List of settings.js overrides to pass via -D to Node-RED.";
|
|
example = literalExpression ''
|
|
{
|
|
"logging.console.level" = "trace";
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
users.users = optionalAttrs (cfg.user == defaultUser) {
|
|
${defaultUser} = {
|
|
isSystemUser = true;
|
|
group = defaultUser;
|
|
};
|
|
};
|
|
|
|
users.groups = optionalAttrs (cfg.group == defaultUser) {
|
|
${defaultUser} = { };
|
|
};
|
|
|
|
networking.firewall = mkIf cfg.openFirewall {
|
|
allowedTCPPorts = [ cfg.port ];
|
|
};
|
|
|
|
systemd.services.node-red = {
|
|
description = "Node-RED Service";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
environment = {
|
|
HOME = cfg.userDir;
|
|
};
|
|
path = lib.optionals cfg.withNpmAndGcc [
|
|
pkgs.nodejs
|
|
pkgs.gcc
|
|
];
|
|
serviceConfig = mkMerge [
|
|
{
|
|
User = cfg.user;
|
|
Group = cfg.group;
|
|
ExecStart = "${cfg.package}/bin/node-red ${pkgs.lib.optionalString cfg.safe "--safe"} --settings ${cfg.configFile} --port ${toString cfg.port} --userDir ${cfg.userDir} ${
|
|
concatStringsSep " " (mapAttrsToList (name: value: "-D ${name}=${value}") cfg.define)
|
|
}";
|
|
PrivateTmp = true;
|
|
Restart = "always";
|
|
WorkingDirectory = cfg.userDir;
|
|
}
|
|
(mkIf (cfg.userDir == "/var/lib/node-red") { StateDirectory = "node-red"; })
|
|
];
|
|
};
|
|
};
|
|
}
|