1
1
Fork 0
nixos/options/default.nix
Myned bb606b807c
nix: ignore .*.nix modules
Signed-off-by: Myned <dev@bjork.tech>
2025-02-18 09:05:05 -06:00

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);
}