nixos/flake/overlays.nix
ulic-youthlic 6a7b5838bc
Some checks are pending
Test Cachix / tests (Akun) (push) Waiting to run
Test Cachix / tests (Cape) (push) Waiting to run
Test Cachix / tests (Tytonidae) (push) Waiting to run
fix: Remove |> operator to fix ci
2025-11-08 00:12:48 +08:00

21 lines
334 B
Nix

{
self,
inputs,
lib,
rootPath,
...
}:
let
inherit (self) outputs;
importWithArgs = lib.flip import { inherit inputs outputs; };
in
{
flake.overlays =
with lib;
pipe
[
"modifications"
"additions"
]
[ (flip genAttrs (name: importWithArgs (rootPath + "/overlays/${name}"))) ];
}