10 lines
148 B
Nix
10 lines
148 B
Nix
{
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.lists) map;
|
|
inherit (lib.path) append;
|
|
in {
|
|
imports = map (append ../common/optional) [
|
|
];
|
|
}
|