From 9248cc09459b76a2f269549a08ff256d75a15c13 Mon Sep 17 00:00:00 2001 From: atagen Date: Thu, 6 Feb 2025 11:35:09 +1100 Subject: [PATCH] fix ignoring inline serviceDefs inherit nit --- default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/default.nix b/default.nix index a9e9c90..cb7f5f0 100644 --- a/default.nix +++ b/default.nix @@ -10,6 +10,7 @@ { services ? { }, imports ? [ ], + serviceDefs ? { }, ... }@args: let @@ -30,7 +31,7 @@ let ./ides.nix # service config and build params (_: { - inherit services auto; + inherit services serviceDefs auto; _buildIdes.shellFn = shell; _buildIdes.shellArgs = shellArgs; })