nixos/n8n: allow unfree in test

This commit is contained in:
Gutyina Gergő 2025-05-03 19:08:22 +02:00 committed by Masum Reza
parent c889246d37
commit b8af95f4cf

View file

@ -10,9 +10,17 @@ in
k900 k900
]; ];
node.pkgsReadOnly = false;
nodes.machine = nodes.machine =
{ pkgs, ... }: { ... }:
{ {
nixpkgs.config.allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"n8n"
];
services.n8n = { services.n8n = {
enable = true; enable = true;
webhookUrl = webhookUrl; webhookUrl = webhookUrl;