1
1
Fork 0
nixos/options/default.nix
Myned 1aed4c8c73
nix: format with alejandra
Signed-off-by: Myned <dev@bjork.tech>
2024-09-11 18:30:16 -05:00

5 lines
170 B
Nix

{lib, ...}:
with lib; {
# Import all *.nix options from custom directory
imports = filter (f: strings.hasSuffix ".nix" f) (filesystem.listFilesRecursive ./custom);
}