Removed useless with

This commit is contained in:
Julien Malka 2021-12-29 16:53:18 +01:00
parent 17764d464d
commit 9688b98206

View file

@ -34,7 +34,7 @@ in
];
};
importConfig = with builtins; path: (mapAttrs (name: value: import (path + "/${name}/default.nix")) (readDir path));
importConfig = path: (mapAttrs (name: value: import (path + "/${name}/default.nix")) (readDir path));
}