dotfiles/provision/nixos/lib/overlays.nix
2023-05-14 15:10:40 -07:00

8 lines
295 B
Nix

/* This configures nixpkgs.overlays to include our overlays/ directory.
*/
let path = ../overlays; in with builtins;
map (n: import (path + ("/" + n)))
(filter (n: match ".*\\.nix" n != null ||
pathExists (path + ("/" + n + "/default.nix")))
(attrNames (readDir path)))