21 lines
242 B
Nix
21 lines
242 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
(lib.mkRenamedOptionModule
|
|
[ "clanCore" ]
|
|
[
|
|
"clan"
|
|
"core"
|
|
]
|
|
)
|
|
];
|
|
|
|
options.clan.core.module = lib.mkOption {
|
|
internal = true;
|
|
type = lib.types.raw;
|
|
};
|
|
}
|