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

16 lines
327 B
Nix
Raw Permalink Normal View History

2023-07-18 10:53:55 +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}";
};
}