Files
nix-config/overlays/default.nix
2023-06-13 01:05:13 +08:00

8 lines
334 B
Nix

args:
# execute and import all overlay files in the current directory with the given args
builtins.map
(f: (import (./. + "/${f}") args)) # execute and import the overlay file
(builtins.filter # find all overlay files in the current directory
(f: f != "default.nix")
(builtins.attrNames (builtins.readDir ./.)))