From fbb5955587bf35b4f07fa55e940125f0acf08733 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 7 Sep 2024 22:05:51 +0800 Subject: [PATCH] wrapper-manager-fds/lib: set modulesPath to module env This makes it possible to have replacement modules in case the user wanted to replace some things. --- lib/env.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/env.nix b/lib/env.nix index 900f895..b31a4b0 100644 --- a/lib/env.nix +++ b/lib/env.nix @@ -14,7 +14,9 @@ rec { specialArgs ? { }, }: lib.evalModules { - inherit specialArgs; + specialArgs = specialArgs // { + modulesPath = builtins.toString ../modules/wrapper-manager; + }; modules = [ ../modules/wrapper-manager