This commit is contained in:
Osman Faruk Bayram 2025-07-12 21:35:19 +03:00
parent ecee9286b1
commit 7ce780986b

7
lib/default.nix Normal file
View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
importList = lib.mapAttrsToList (name: _path: ./. + "/${name}")
(lib.filterAttrs (filename: kind:
filename != "default.nix" && (kind == "regular" || kind == "directory"))
(builtins.readDir ./.));
}