1
1
Fork 0
nixos/options/default.nix

6 lines
222 B
Nix
Raw Normal View History

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