nix-config/hosts/m3-r1/services/n8n.nix

19 lines
334 B
Nix
Raw Normal View History

2024-05-15 09:25:27 +00:00
{
config,
pkgs,
...
}: {
services.n8n = {
enable = true;
openFirewall = true;
settings = {
host = "wf.lanakk.com";
protocol = "https";
editorBaseUrl = "https://wf.lanakk.com";
};
};
systemd.services.n8n.serviceConfig = {
EnvironmentFile = "${config.age.secrets.n8n-env.path}";
};
}