nixos/n8n: allow unfree in test
This commit is contained in:
parent
c889246d37
commit
b8af95f4cf
@ -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;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user