mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
14 lines
446 B
Nix
14 lines
446 B
Nix
{inputs, ...}: let
|
|
defaultOverlays =
|
|
# execute and import all overlay files in the current
|
|
# directory with the given args
|
|
builtins.map
|
|
# execute and import the overlay file
|
|
(f: (import (./. + "/${f}") {inherit inputs;}))
|
|
# find all overlay files in the current directory
|
|
(builtins.filter
|
|
(f: f != "default.nix")
|
|
(builtins.attrNames (builtins.readDir ./.)));
|
|
in {
|
|
nixpkgs.overlays = defaultOverlays;
|
|
}
|