12 lines
153 B
Nix
12 lines
153 B
Nix
|
{ depot, lib, ... }:
|
||
|
|
||
|
{
|
||
|
options.cluster = lib.mkOption {
|
||
|
type = lib.types.raw;
|
||
|
};
|
||
|
|
||
|
config.cluster = import ./. {
|
||
|
inherit depot lib;
|
||
|
};
|
||
|
}
|