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