Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

nixos/n8n: allow unfree in test

authored by gepbird.tngl.sh and committed by

Masum Reza b8af95f4 c889246d

+9 -1
+9 -1
nixos/tests/n8n.nix
··· 10 10 k900 11 11 ]; 12 12 13 + node.pkgsReadOnly = false; 14 + 13 15 nodes.machine = 14 - { pkgs, ... }: 16 + { ... }: 15 17 { 18 + nixpkgs.config.allowUnfreePredicate = 19 + pkg: 20 + builtins.elem (lib.getName pkg) [ 21 + "n8n" 22 + ]; 23 + 16 24 services.n8n = { 17 25 enable = true; 18 26 webhookUrl = webhookUrl;