mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
nixos/n8n: allow unfree in test
This commit is contained in:
parent
c889246d37
commit
b8af95f4cf
1 changed files with 9 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue