12 lines
166 B
Nix
12 lines
166 B
Nix
{
|
|
services.n8n = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
systemd.services.n8n = {
|
|
environment = {
|
|
N8N_SECURE_COOKIE = "false";
|
|
};
|
|
};
|
|
}
|