5 lines
222 B
Nix
5 lines
222 B
Nix
{lib, ...}:
|
|
with lib; {
|
|
# Import all *.nix options from custom directory, excluding .*.nix
|
|
imports = filter (f: hasSuffix ".nix" f && !hasPrefix "." (builtins.baseNameOf f)) (filesystem.listFilesRecursive ./custom);
|
|
}
|