2024-09-12 20:50:53 -05:00
|
|
|
{lib, ...}:
|
|
|
|
with lib; {
|
2025-02-18 09:05:05 -06:00
|
|
|
# Import all *.nix options from custom directory, excluding .*.nix
|
|
|
|
imports = filter (f: hasSuffix ".nix" f && !hasPrefix "." (builtins.baseNameOf f)) (filesystem.listFilesRecursive ./custom);
|
2024-09-08 19:22:14 -05:00
|
|
|
}
|