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

15 lines
311 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 = {
editorBaseUrl = "https://wf.lanakk.com";
host = "https://wf.lanakk.com";
};
};
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
}