2025-06-09 16:14:57 +08:00
|
|
|
{
|
|
|
|
|
self,
|
|
|
|
|
inputs,
|
|
|
|
|
lib,
|
2025-07-11 21:04:42 +08:00
|
|
|
rootPath,
|
2025-06-09 16:14:57 +08:00
|
|
|
...
|
2025-07-13 06:04:55 +08:00
|
|
|
}:
|
|
|
|
|
let
|
2025-06-09 16:14:57 +08:00
|
|
|
inherit (self) outputs;
|
2025-07-13 06:04:55 +08:00
|
|
|
importWithArgs = lib.flip import { inherit inputs outputs; };
|
|
|
|
|
in
|
|
|
|
|
{
|
2025-06-09 16:14:57 +08:00
|
|
|
flake.overlays =
|
|
|
|
|
[
|
|
|
|
|
"modifications"
|
|
|
|
|
"additions"
|
|
|
|
|
]
|
|
|
|
|
|> (with lib; flip genAttrs (name: importWithArgs (rootPath + "/overlays/${name}")));
|
|
|
|
|
}
|