mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-18 10:47:31 -08:00
9 lines
295 B
Nix
9 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)))
|