nixos/n8n: allow unfree in test

This commit is contained in:
Gutyina Gergő
2025-05-30 11:46:23 +05:30
committed by Masum Reza
parent c889246d37
commit b8af95f4cf
+9 -1
View File
@@ -10,9 +10,17 @@ in
k900
];
node.pkgsReadOnly = false;
nodes.machine =
{ pkgs, ... }:
{ ... }:
{
nixpkgs.config.allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"n8n"
];
services.n8n = {
enable = true;
webhookUrl = webhookUrl;