Removed useless with

This commit is contained in:
Julien Malka 2021-12-29 16:53:18 +01:00
parent e94b93266c
commit f6b29709c5
No known key found for this signature in database
GPG key ID: 3C68E13964FEA07F

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));
}