nix-configurations/hosts/lkk-nix-1/services/n8n.nix

16 lines
327 B
Nix
Raw Normal View History

2023-03-30 04:38:48 +00:00
{ config, pkgs, ... }: {
2023-01-18 19:14:16 +00:00
services.n8n = {
enable = true;
openFirewall = true;
settings = {
2023-05-06 13:30:50 +00:00
host = "wf.lanakk.com";
protocol = "https";
editorBaseUrl="https://wf.lanakk.com";
2023-01-18 19:14:16 +00:00
};
};
2023-04-13 09:23:10 +00:00
systemd.services.n8n.serviceConfig = {
EnvironmentFile = "${config.age.secrets.n8n-env.path}";
2023-03-28 10:03:26 +00:00
};
2023-01-18 19:14:16 +00:00
}