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

15 lines
311 B
Nix

{ config, pkgs, ... }: {
services.n8n = {
enable = true;
openFirewall = true;
settings = {
editorBaseUrl = "https://wf.lanakk.com";
host = "https://wf.lanakk.com";
};
};
systemd.services.n8n.serviceConfig = {
EnvironmentFile = "${config.age.secrets.n8n-env.path}";
};
}