nix/hosts/n8n/default.nix

25 lines
325 B
Nix

{
config,
pkgs,
lib,
...
}:
{
my = {
services.n8n.enable = true;
services.ilpost-addict.enable = true;
utils = {
commons.enable = true;
commons.gc.enable = true;
lxc-standard.enable = true;
};
virtualisation.proxmox.enable = true;
};
system.stateVersion = "25.11";
}