From fe7cdbef8484727fa8321970421efd7487d2ccf9 Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 8 Jun 2025 22:50:34 -0500 Subject: [PATCH] feat: test --- modules/helpers.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/helpers.nix b/modules/helpers.nix index b6a664b..0abf19f 100755 --- a/modules/helpers.nix +++ b/modules/helpers.nix @@ -17,7 +17,7 @@ builtins.listToAttrs ( map (dir: { name = baseNameOf (toString dir); - value = import dir; + value = { ... }: import dir; # Wrap as module }) (collectDirs path) ); }