dashboard only

This commit is contained in:
2025-07-27 15:31:40 -05:00
parent 8e5ee39412
commit affa2271b7
3 changed files with 209 additions and 3 deletions

View File

@@ -0,0 +1,29 @@
{ config, lib, ... }: {
options.sysconfig.opts.virtualization.n8n.enable = lib.options.mkOption {
type = lib.types.bool;
default = false;
};
config = lib.mkIf config.sysconfig.opts.virtualization.n8n.enable {
containers.n8n = {
autoStart = true;
privateNetwork = true;
hostAddress = "192.168.100.10";
localAddress = "192.168.100.21";
config = {
networking.firewall.allowedTCPPorts = [ 80 ];
services.n8n = {
};
system.stateVersion = "25.05";
};
};
};
}