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-11-09 06:25:03 +08:00
|
|
|
}: let
|
2025-06-09 16:14:57 +08:00
|
|
|
inherit (self) outputs;
|
2025-11-09 06:25:03 +08:00
|
|
|
importWithArgs = lib.flip import {inherit inputs outputs;};
|
|
|
|
|
in {
|
|
|
|
|
flake.overlays = with lib;
|
2025-11-07 23:54:49 +08:00
|
|
|
pipe
|
2025-11-09 06:25:03 +08:00
|
|
|
[
|
|
|
|
|
"modifications"
|
|
|
|
|
"additions"
|
|
|
|
|
]
|
|
|
|
|
[(flip genAttrs (name: importWithArgs (rootPath + "/overlays/${name}")))];
|
2025-06-09 16:14:57 +08:00
|
|
|
}
|