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