diff options
Diffstat (limited to 'util/importAll.nix')
| -rw-r--r-- | util/importAll.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/util/importAll.nix b/util/importAll.nix index 8062682..678cf06 100644 --- a/util/importAll.nix +++ b/util/importAll.nix @@ -11,6 +11,7 @@ let entry = name: _: { name = basename name; - value = root + "/${name}"; + value = import (root + "/${name}"); }; -in mapAttrs' entry (filterAttrs isMatch (readDir root)) +in + mapAttrs' entry (filterAttrs isMatch (readDir root)) |
