nixfiles/hosts/hermes/n8n.nix
2026-04-22 21:28:19 +01:00

20 lines
431 B
Nix

{ pkgs, ... }:
let
domain = "automation.cleslie.uk";
in
{
services = {
cloudflare-dyndns.domains = [ domain ];
n8n = {
enable = true;
environment = {
PORT = "5678";
WEBHOOK_URL = "https://" + domain + "/";
};
};
caddy.virtualHosts.${domain}.extraConfig = ''
reverse_proxy http://127.0.0.1:5678
'';
};
environment.systemPackages = with pkgs; [ mupdf-headless ];
}