nix/hosts/n8n/default.nix
2025-12-03 15:48:10 +01:00

23 lines
282 B
Nix

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