From 5ff88e0a611fb2c4c33fa31c5d32f4e2d974a5a9 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Fri, 12 Jan 2024 19:27:28 +0800 Subject: [PATCH] apps/run-workflow-with-vm: add extraModules optional argument --- apps/run-workflow-with-vm/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/run-workflow-with-vm/configuration.nix b/apps/run-workflow-with-vm/configuration.nix index 935efe4a..38e75694 100644 --- a/apps/run-workflow-with-vm/configuration.nix +++ b/apps/run-workflow-with-vm/configuration.nix @@ -1,7 +1,7 @@ # A very basic NixOS VM configuration intended for testing out the given # workflow module. It's a good thing the baseline for the configuration is not # tedious to set up for simpler configs like this. -{ workflow }: +{ workflow, extraModules ? [] }: let pkgs = import { }; @@ -16,7 +16,7 @@ let in import { inherit lib; - modules = modules ++ [ + modules = modules ++ extraModules ++ [